diff options
author | David Kilroy <kilroyd@gmail.com> | 2008-08-21 18:27:57 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-22 19:28:05 -0400 |
commit | 3056c40426b9cd4f7c334d773d69db64e195431d (patch) | |
tree | baf1cfcbb43a377c8d78419afc9f2f58f63ec871 /drivers/net/wireless/orinoco.c | |
parent | 6eecad77861b193bcfc109de12835ca0bddf7c58 (diff) |
orinoco: address checkpatch typedef warning
Just sprinkle the necessary structs around...
Signed-off-by: David Kilroy <kilroyd@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/orinoco.c')
-rw-r--r-- | drivers/net/wireless/orinoco.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/net/wireless/orinoco.c b/drivers/net/wireless/orinoco.c index b83415daa723..3d5570d0a262 100644 --- a/drivers/net/wireless/orinoco.c +++ b/drivers/net/wireless/orinoco.c | |||
@@ -279,7 +279,8 @@ static int orinoco_bss_data_allocate(struct orinoco_private *priv) | |||
279 | return 0; | 279 | return 0; |
280 | 280 | ||
281 | priv->bss_data = | 281 | priv->bss_data = |
282 | kzalloc(ORINOCO_MAX_BSS_COUNT * sizeof(bss_element), GFP_KERNEL); | 282 | kzalloc(ORINOCO_MAX_BSS_COUNT * sizeof(struct bss_element), |
283 | GFP_KERNEL); | ||
283 | if (!priv->bss_data) { | 284 | if (!priv->bss_data) { |
284 | printk(KERN_WARNING "Out of memory allocating beacons"); | 285 | printk(KERN_WARNING "Out of memory allocating beacons"); |
285 | return -ENOMEM; | 286 | return -ENOMEM; |
@@ -1413,8 +1414,8 @@ static void orinoco_send_wevents(struct work_struct *work) | |||
1413 | static inline void orinoco_clear_scan_results(struct orinoco_private *priv, | 1414 | static inline void orinoco_clear_scan_results(struct orinoco_private *priv, |
1414 | unsigned long scan_age) | 1415 | unsigned long scan_age) |
1415 | { | 1416 | { |
1416 | bss_element *bss; | 1417 | struct bss_element *bss; |
1417 | bss_element *tmp_bss; | 1418 | struct bss_element *tmp_bss; |
1418 | 1419 | ||
1419 | /* Blow away current list of scan results */ | 1420 | /* Blow away current list of scan results */ |
1420 | list_for_each_entry_safe(bss, tmp_bss, &priv->bss_list, list) { | 1421 | list_for_each_entry_safe(bss, tmp_bss, &priv->bss_list, list) { |
@@ -1489,7 +1490,7 @@ static int orinoco_process_scan_results(struct net_device *dev, | |||
1489 | /* Read the entries one by one */ | 1490 | /* Read the entries one by one */ |
1490 | for (; offset + atom_len <= len; offset += atom_len) { | 1491 | for (; offset + atom_len <= len; offset += atom_len) { |
1491 | int found = 0; | 1492 | int found = 0; |
1492 | bss_element *bss = NULL; | 1493 | struct bss_element *bss = NULL; |
1493 | 1494 | ||
1494 | /* Get next atom */ | 1495 | /* Get next atom */ |
1495 | atom = (union hermes_scan_info *) (buf + offset); | 1496 | atom = (union hermes_scan_info *) (buf + offset); |
@@ -1511,7 +1512,7 @@ static int orinoco_process_scan_results(struct net_device *dev, | |||
1511 | /* Grab a bss off the free list */ | 1512 | /* Grab a bss off the free list */ |
1512 | if (!found && !list_empty(&priv->bss_free_list)) { | 1513 | if (!found && !list_empty(&priv->bss_free_list)) { |
1513 | bss = list_entry(priv->bss_free_list.next, | 1514 | bss = list_entry(priv->bss_free_list.next, |
1514 | bss_element, list); | 1515 | struct bss_element, list); |
1515 | list_del(priv->bss_free_list.next); | 1516 | list_del(priv->bss_free_list.next); |
1516 | 1517 | ||
1517 | list_add_tail(&bss->list, &priv->bss_list); | 1518 | list_add_tail(&bss->list, &priv->bss_list); |
@@ -4547,7 +4548,7 @@ static int orinoco_ioctl_getscan(struct net_device *dev, | |||
4547 | char *extra) | 4548 | char *extra) |
4548 | { | 4549 | { |
4549 | struct orinoco_private *priv = netdev_priv(dev); | 4550 | struct orinoco_private *priv = netdev_priv(dev); |
4550 | bss_element *bss; | 4551 | struct bss_element *bss; |
4551 | int err = 0; | 4552 | int err = 0; |
4552 | unsigned long flags; | 4553 | unsigned long flags; |
4553 | char *current_ev = extra; | 4554 | char *current_ev = extra; |