ath10k: use true,false for bool variable
authorzhengbin <zhengbin13@huawei.com>
Tue, 24 Dec 2019 14:16:04 +0000 (22:16 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Sun, 26 Jan 2020 10:25:39 +0000 (12:25 +0200)
Fixes coccicheck warning:

drivers/net/wireless/ath/ath10k/htt_rx.c:2143:2-31: 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>
drivers/net/wireless/ath/ath10k/htt_rx.c

index 7fb15180c685968bf0f5b540fa33c16c04289e23..38a5814cf345d38913ce412ed4c5221ebeae6bb8 100644 (file)
@@ -2140,7 +2140,7 @@ static bool ath10k_htt_rx_pn_check_replay_hl(struct ath10k *ar,
        if (last_pn_valid)
                pn_invalid = ath10k_htt_rx_pn_cmp48(&new_pn, last_pn);
        else
-               peer->tids_last_pn_valid[tid] = 1;
+               peer->tids_last_pn_valid[tid] = true;
 
        if (!pn_invalid)
                last_pn->pn48 = new_pn.pn48;