mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 00:03:02 +07:00
rtw88: 8822c: fix boolreturn.cocci warnings
drivers/net/wireless/realtek/rtw88/rtw8822c.c:2606:9-10: WARNING: return
of 0/1 in function 'rtw8822c_dpk_coef_iq_check' with return type bool
Return statements in functions returning bool should use true/false
instead of 1/0.
Generated by: scripts/coccinelle/misc/boolreturn.cocci
Fixes: 5227c2ee45
("rtw88: 8822c: add SW DPK support")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
fa38b4fddc
commit
0d32f5d93b
@ -2603,9 +2603,9 @@ static bool rtw8822c_dpk_coef_iq_check(struct rtw_dev *rtwdev,
|
||||
{
|
||||
if (coef_i == 0x1000 || coef_i == 0x0fff ||
|
||||
coef_q == 0x1000 || coef_q == 0x0fff)
|
||||
return 1;
|
||||
else
|
||||
return 0;
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
static u32 rtw8822c_dpk_coef_transfer(struct rtw_dev *rtwdev)
|
||||
|
Loading…
Reference in New Issue
Block a user