staging: rtl8723bs: hal: Add spaces around operators in hal_btcoex.c
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>
This commit is contained in:
parent
2466b0b27c
commit
f26f85858d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user