OSDN Git Service

Staging: wlan-ng: fixed coding style issues in p80211conv.h
authorJohan Meiring <johanmeiring@gmail.com>
Sat, 6 Nov 2010 13:59:50 +0000 (15:59 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 10 Nov 2010 00:37:17 +0000 (16:37 -0800)
This is a patch to the p80211conv.h file that fixes two 80 character
line limit styling issues

Signed-off-by: Johan Meiring <johanmeiring@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/wlan-ng/p80211conv.h

index eca0391..ea493aa 100644 (file)
 #define        P80211_FRMMETA_MAGIC    0x802110
 
 #define P80211SKB_FRMMETA(s) \
-       (((((struct p80211_frmmeta *)((s)->cb))->magic) == P80211_FRMMETA_MAGIC) ? \
+       (((((struct p80211_frmmeta *)((s)->cb))->magic) == \
+               P80211_FRMMETA_MAGIC) ? \
                ((struct p80211_frmmeta *)((s)->cb)) : \
                (NULL))
 
 #define P80211SKB_RXMETA(s) \
-       (P80211SKB_FRMMETA((s)) ?  P80211SKB_FRMMETA((s))->rx : ((struct p80211_rxmeta *)(NULL)))
+       (P80211SKB_FRMMETA((s)) ?  P80211SKB_FRMMETA((s))->rx : \
+               ((struct p80211_rxmeta *)(NULL)))
 
 struct p80211_rxmeta {
        struct wlandevice *wlandev;