From: Aybuke Ozdemir Date: Sun, 28 Sep 2014 14:22:37 +0000 (+0300) Subject: staging: rtl8723au: core: Add space after '|' X-Git-Tag: firefly_0821_release~176^2~3121^2~138 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=dd60925d6980d52c70e62c23f9f3050e783bf2de;p=firefly-linux-kernel-4.4.55.git staging: rtl8723au: core: Add space after '|' This patch fixes checkpatch.pl error in file rtw_ap.c ERROR: need consistent spacing around '|' (ctx:WxV) Signed-off-by: Aybuke Ozdemir Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723au/core/rtw_ap.c b/drivers/staging/rtl8723au/core/rtw_ap.c index 35908bac7bad..6b4092f05da5 100644 --- a/drivers/staging/rtl8723au/core/rtw_ap.c +++ b/drivers/staging/rtl8723au/core/rtw_ap.c @@ -396,7 +396,7 @@ void add_RATid23a(struct rtw_adapter *padapter, struct sta_info *psta, u8 rssi_l if (tx_ra_bitmap & 0xffff000) sta_band |= WIRELESS_11_24N | WIRELESS_11G | WIRELESS_11B; else if (tx_ra_bitmap & 0xff0) - sta_band |= WIRELESS_11G |WIRELESS_11B; + sta_band |= WIRELESS_11G | WIRELESS_11B; else sta_band |= WIRELESS_11B; }