[PATCH 09/10] staging/rtl8723bs/hal: fix comparison to true/false is error prone

From: Hariprasad Kelam
Date: Sat Jun 29 2019 - 06:37:02 EST


fix below issues reported by checkpatch

CHECK: Using comparison to false is error prone
CHECK: Using comparison to true is error prone

Signed-off-by: Hariprasad Kelam <hariprasad.kelam@xxxxxxxxx>
---
drivers/staging/rtl8723bs/hal/hal_com.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723bs/hal/hal_com.c b/drivers/staging/rtl8723bs/hal/hal_com.c
index 2763479..d3025ca 100644
--- a/drivers/staging/rtl8723bs/hal/hal_com.c
+++ b/drivers/staging/rtl8723bs/hal/hal_com.c
@@ -140,7 +140,7 @@ u8 hal_com_config_channel_plan(
}

if (
- (false == pHalData->bDisableSWChannelPlan) &&
+ (!pHalData->bDisableSWChannelPlan) &&
rtw_is_channel_plan_valid(sw_channel_plan)
)
chnlPlan = sw_channel_plan;
--
2.7.4