Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 869c4b4a authored by Johan Meiring's avatar Johan Meiring Committed by Greg Kroah-Hartman
Browse files

Staging: wlan-ng: fixed coding style issues in p80211conv.h



This is a patch to the p80211conv.h file that fixes two 80 character
line limit styling issues

Signed-off-by: default avatarJohan Meiring <johanmeiring@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 9f027eb6
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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;