rtlwifi: rtl8192de: fix comparison to bool warning in hw.c
authorZheng Bin <zhengbin13@huawei.com>
Fri, 18 Sep 2020 10:25:04 +0000 (18:25 +0800)
committerKalle Valo <kvalo@codeaurora.org>
Mon, 21 Sep 2020 13:02:49 +0000 (16:02 +0300)
Fixes coccicheck warning:

drivers/net/wireless/realtek/rtlwifi/rtl8192de/hw.c:566:14-20: WARNING: Comparison to bool
drivers/net/wireless/realtek/rtlwifi/rtl8192de/hw.c:572:13-19: WARNING: Comparison to bool
drivers/net/wireless/realtek/rtlwifi/rtl8192de/hw.c:581:14-20: WARNING: Comparison to bool
drivers/net/wireless/realtek/rtlwifi/rtl8192de/hw.c:587:13-19: WARNING: Comparison to bool

Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
Acked-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200918102505.16036-9-zhengbin13@huawei.com
drivers/net/wireless/realtek/rtlwifi/rtl8192de/hw.c

index 2deadc7339ce73d586dafbb34ec92924d6a04193..f849291cc5875ff67db270da2c31315ae79f4101 100644 (file)
@@ -563,13 +563,13 @@ static bool _rtl92de_llt_table_init(struct ieee80211_hw *hw)
        /* 18.  LLT_table_init(Adapter);  */
        for (i = 0; i < (txpktbuf_bndy - 1); i++) {
                status = _rtl92de_llt_write(hw, i, i + 1);
-               if (true != status)
+               if (!status)
                        return status;
        }
 
        /* end of list */
        status = _rtl92de_llt_write(hw, (txpktbuf_bndy - 1), 0xFF);
-       if (true != status)
+       if (!status)
                return status;
 
        /* Make the other pages as ring buffer */
@@ -578,13 +578,13 @@ static bool _rtl92de_llt_table_init(struct ieee80211_hw *hw)
        /* Otherwise used as local loopback buffer.  */
        for (i = txpktbuf_bndy; i < maxpage; i++) {
                status = _rtl92de_llt_write(hw, i, (i + 1));
-               if (true != status)
+               if (!status)
                        return status;
        }
 
        /* Let last entry point to the start entry of ring buffer */
        status = _rtl92de_llt_write(hw, maxpage, txpktbuf_bndy);
-       if (true != status)
+       if (!status)
                return status;
 
        return true;