OSDN Git Service

staging: rtl8723au: hal_com.c: Use BIT() consistently instead of BITx
authorJes Sorensen <Jes.Sorensen@redhat.com>
Fri, 16 May 2014 08:03:46 +0000 (10:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 16 May 2014 18:34:20 +0000 (11:34 -0700)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/hal/hal_com.c

index 8e08977..bb948e5 100644 (file)
@@ -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;
 }