Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d47f4db7 authored by Shobhit Kukreti's avatar Shobhit Kukreti Committed by Greg Kroah-Hartman
Browse files

staging: rtl8723bs: hal: Remove True/False Comparisons



Removing comparisons to True/False in if statements.

Checkpatch reported:
CHECK: Using comparison to true is error prone

Signed-off-by: default avatarShobhit Kukreti <shobhitkukreti@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f2e741cb
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1421,7 +1421,7 @@ static void halbtc8723b1ant_PsTdma(


	if (bTurnOn) {
		if (pBtLinkInfo->bSlaveRole == true)
		if (pBtLinkInfo->bSlaveRole)
			psTdmaByte4Val = psTdmaByte4Val | 0x1;  /* 0x778 = 0x1 at wifi slot (no blocking BT Low-Pri pkts) */


@@ -2337,9 +2337,9 @@ static void halbtc8723b1ant_ActionWifiConnected(PBTC_COEXIST pBtCoexist)
					);
			}
		} else if (
			(pCoexSta->bPanExist == false) &&
			(pCoexSta->bA2dpExist == false) &&
			(pCoexSta->bHidExist == false)
			(!pCoexSta->bPanExist) &&
			(!pCoexSta->bA2dpExist) &&
			(!pCoexSta->bHidExist)
		)
			halbtc8723b1ant_PowerSaveState(pBtCoexist, BTC_PS_WIFI_NATIVE, 0x0, 0x0);
		else