aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/wlan-ng/p80211netdev.c
diff options
context:
space:
mode:
authorEdgardo Hames <ehames@gmail.com>2010-07-31 12:06:52 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-08-02 21:20:03 -0400
commit51e4896adad00a066fad65649405c1c9fa108157 (patch)
tree9788b9572f078e0f7f86e60fd17e10bbe7d0a7e3 /drivers/staging/wlan-ng/p80211netdev.c
parent93df38e593d949de83a6447d016cc4b07d392f47 (diff)
Staging: wlan-ng: fix style issues in p80211conv.h
This patch removes typedefs in p80211conv.h. Signed-off-by: Edgardo Hames <ehames@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/wlan-ng/p80211netdev.c')
-rw-r--r--drivers/staging/wlan-ng/p80211netdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wlan-ng/p80211netdev.c b/drivers/staging/wlan-ng/p80211netdev.c
index c299acea988..5b68af04d4e 100644
--- a/drivers/staging/wlan-ng/p80211netdev.c
+++ b/drivers/staging/wlan-ng/p80211netdev.c
@@ -351,7 +351,7 @@ static int p80211knetdev_hard_start_xmit(struct sk_buff *skb,
351 int txresult = -1; 351 int txresult = -1;
352 wlandevice_t *wlandev = netdev->ml_priv; 352 wlandevice_t *wlandev = netdev->ml_priv;
353 union p80211_hdr p80211_hdr; 353 union p80211_hdr p80211_hdr;
354 p80211_metawep_t p80211_wep; 354 struct p80211_metawep p80211_wep;
355 355
356 if (skb == NULL) 356 if (skb == NULL)
357 return NETDEV_TX_OK; 357 return NETDEV_TX_OK;
@@ -362,7 +362,7 @@ static int p80211knetdev_hard_start_xmit(struct sk_buff *skb,
362 } 362 }
363 363
364 memset(&p80211_hdr, 0, sizeof(union p80211_hdr)); 364 memset(&p80211_hdr, 0, sizeof(union p80211_hdr));
365 memset(&p80211_wep, 0, sizeof(p80211_metawep_t)); 365 memset(&p80211_wep, 0, sizeof(struct p80211_metawep));
366 366
367 if (netif_queue_stopped(netdev)) { 367 if (netif_queue_stopped(netdev)) {
368 pr_debug("called when queue stopped.\n"); 368 pr_debug("called when queue stopped.\n");