Commit 7e68f50a authored by Michael Hornung's avatar Michael Hornung Committed by Greg Kroah-Hartman

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: default avatarMichael Hornung <mhornung.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 364cdb3f
...@@ -695,7 +695,7 @@ enum ieee80211_state { ...@@ -695,7 +695,7 @@ enum ieee80211_state {
#define IEEE_A BIT(0) #define IEEE_A BIT(0)
#define IEEE_B BIT(1) #define IEEE_B BIT(1)
#define IEEE_G BIT(2) #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) static inline int ieee80211_is_empty_essid(const char *essid, int essid_len)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment