ath9k: use true,false for bool variable
Fixes coccicheck warning: drivers/net/wireless/ath/ath9k/ar9003_aic.c:409:2-12: WARNING: Assignment of 0/1 to bool variable Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: zhengbin <zhengbin13@huawei.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
e07c5f2e4e
commit
d27c768f3b
|
@ -406,7 +406,7 @@ static bool ar9003_aic_cal_post_process(struct ath_hw *ah)
|
|||
sram.com_att_6db =
|
||||
ar9003_aic_find_index(1, fixed_com_att_db);
|
||||
|
||||
sram.valid = 1;
|
||||
sram.valid = true;
|
||||
|
||||
sram.rot_dir_att_db =
|
||||
min(max(rot_dir_path_att_db,
|
||||
|
|
Loading…
Reference in New Issue