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 <mhornung.linux@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Michael Hornung 2015-11-18 20:59:14 +01:00 committed by Greg Kroah-Hartman
parent 364cdb3f57
commit 7e68f50a9b
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{