]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
staging: rtl8723bs: hal: Add spaces around operators in hal_btcoex.c
authorFabio M. De Francesco <fmdefrancesco@gmail.com>
Tue, 6 Apr 2021 18:14:28 +0000 (20:14 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 7 Apr 2021 08:18:28 +0000 (10:18 +0200)
Added spaces around operators. Issue detected by checkpatch.pl.
Spaces around operators are preferred to improve readibility.

Signed-off-by: Fabio M. De Francesco <fmdefrancesco@gmail.com>
Link: https://lore.kernel.org/r/20210406181428.15097-1-fmdefrancesco@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/hal_btcoex.c

index d42cc24c7535c94f215d60cdecc743f992d970d8..2cb5eedddde385bf274af8e34698c481018c9f82 100644 (file)
@@ -721,7 +721,7 @@ static void halbtcoutsrc_BitMaskWrite1Byte(void *pBtcContext, u32 regAddr, u8 bi
                originalValue = rtw_read8(padapter, regAddr);
 
                for (i = 0; i <= 7; i++) {
-                       if ((bitMask>>i)&0x1)
+                       if ((bitMask >> i) & 0x1)
                                break;
                }
                bitShift = i;
@@ -1482,8 +1482,8 @@ u32 hal_btcoex_GetRaMask(struct adapter *padapter)
 void hal_btcoex_RecordPwrMode(struct adapter *padapter, u8 *pCmdBuf, u8 cmdLen)
 {
        BTC_PRINT(BTC_MSG_ALGORITHM, ALGO_TRACE_FW_EXEC, ("[BTCoex], FW write pwrModeCmd = 0x%04x%08x\n",
-               pCmdBuf[0]<<8|pCmdBuf[1],
-               pCmdBuf[2]<<24|pCmdBuf[3]<<16|pCmdBuf[4]<<8|pCmdBuf[5]));
+               pCmdBuf[0] << 8 | pCmdBuf[1],
+               pCmdBuf[2] << 24 | pCmdBuf[3] << 16 | pCmdBuf[4] << 8 | pCmdBuf[5]));
 
        memcpy(GLBtCoexist.pwrModeVal, pCmdBuf, cmdLen);
 }
@@ -1552,13 +1552,13 @@ u32 hal_btcoex_GetDBG(struct adapter *padapter, u8 *pStrBuf, u32 bufSize)
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[0]=%d for INTF_INIT\n",
-               (GLBtcDbgType[BTC_MSG_INTERFACE]&INTF_INIT)?1:0);
+               (GLBtcDbgType[BTC_MSG_INTERFACE] & INTF_INIT) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[2]=%d for INTF_NOTIFY\n\n",
-               (GLBtcDbgType[BTC_MSG_INTERFACE]&INTF_NOTIFY)?1:0);
+               (GLBtcDbgType[BTC_MSG_INTERFACE] & INTF_NOTIFY) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
@@ -1570,61 +1570,61 @@ u32 hal_btcoex_GetDBG(struct adapter *padapter, u8 *pStrBuf, u32 bufSize)
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[0]=%d for BT_RSSI_STATE\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_BT_RSSI_STATE)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_BT_RSSI_STATE) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[1]=%d for WIFI_RSSI_STATE\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_WIFI_RSSI_STATE)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_WIFI_RSSI_STATE) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[2]=%d for BT_MONITOR\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_BT_MONITOR)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_BT_MONITOR) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[3]=%d for TRACE\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_TRACE)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_TRACE) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[4]=%d for TRACE_FW\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_TRACE_FW)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_TRACE_FW) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[5]=%d for TRACE_FW_DETAIL\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_TRACE_FW_DETAIL)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_TRACE_FW_DETAIL) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[6]=%d for TRACE_FW_EXEC\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_TRACE_FW_EXEC)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_TRACE_FW_EXEC) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[7]=%d for TRACE_SW\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_TRACE_SW)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_TRACE_SW) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[8]=%d for TRACE_SW_DETAIL\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_TRACE_SW_DETAIL)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_TRACE_SW_DETAIL) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;
        leftSize -= count;
        count = rtw_sprintf(pstr, leftSize, "\tbit[9]=%d for TRACE_SW_EXEC\n",
-               (GLBtcDbgType[BTC_MSG_ALGORITHM]&ALGO_TRACE_SW_EXEC)?1:0);
+               (GLBtcDbgType[BTC_MSG_ALGORITHM] & ALGO_TRACE_SW_EXEC) ? 1 : 0);
        if ((count < 0) || (count >= leftSize))
                goto exit;
        pstr += count;