From: Michael Hornung Date: Wed, 18 Nov 2015 19:59:14 +0000 (+0100) Subject: staging: rtl8712: Coding style: Fix missing spaces X-Git-Tag: next-20160210~18^2~44 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7e68f50a9b8b9d4301fe65a7ea216f814ff6d81b;p=karo-tx-linux.git staging: rtl8712: Coding style: Fix missing spaces * Add missing spaces around bitwise OR operation in order to get rid of checkpatch.pl's "CHECK: spaces preferred around that '|'" Signed-off-by: Michael Hornung Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8712/ieee80211.h b/drivers/staging/rtl8712/ieee80211.h index 8ca3444ad48b..e372e1d3ea94 100644 --- a/drivers/staging/rtl8712/ieee80211.h +++ b/drivers/staging/rtl8712/ieee80211.h @@ -695,7 +695,7 @@ enum ieee80211_state { #define IEEE_A BIT(0) #define IEEE_B BIT(1) #define IEEE_G BIT(2) -#define IEEE_MODE_MASK (IEEE_A|IEEE_B|IEEE_G) +#define IEEE_MODE_MASK (IEEE_A | IEEE_B | IEEE_G) static inline int ieee80211_is_empty_essid(const char *essid, int essid_len) {