Skip to content

Commit

Permalink
Staging: wlan-ng: fixed coding style issues in p80211conv.h
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Johan Meiring authored and Greg Kroah-Hartman committed Nov 10, 2010
1 parent 9f027eb commit 869c4b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/staging/wlan-ng/p80211conv.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,14 @@
#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;
Expand Down

0 comments on commit 869c4b4

Please sign in to comment.