From: Jes Sorensen Date: Fri, 16 May 2014 08:03:46 +0000 (+0200) Subject: staging: rtl8723au: hal_com.c: Use BIT() consistently instead of BITx X-Git-Tag: next-20140519~19^2~156 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d66ecc271c42b4f3d618d76c98407812a2c6300e;p=karo-tx-linux.git staging: rtl8723au: hal_com.c: Use BIT() consistently instead of BITx Signed-off-by: Jes Sorensen Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723au/hal/hal_com.c b/drivers/staging/rtl8723au/hal/hal_com.c index 8e08977e929b..bb948e595be3 100644 --- a/drivers/staging/rtl8723au/hal/hal_com.c +++ b/drivers/staging/rtl8723au/hal/hal_com.c @@ -760,14 +760,14 @@ void rtl8723a_bcn_valid(struct rtw_adapter *padapter) /* BCN_VALID, BIT16 of REG_TDECTRL = BIT0 of REG_TDECTRL+2, write 1 to clear, Clear by sw */ rtw_write8(padapter, REG_TDECTRL + 2, - rtw_read8(padapter, REG_TDECTRL + 2) | BIT0); + rtw_read8(padapter, REG_TDECTRL + 2) | BIT(0)); } bool rtl8723a_get_bcn_valid(struct rtw_adapter *padapter) { bool retval; - retval = (rtw_read8(padapter, REG_TDECTRL + 2) & BIT0) ? true : false; + retval = (rtw_read8(padapter, REG_TDECTRL + 2) & BIT(0)) ? true : false; return retval; }