rtlwifi: rtl8192de: Remove redundant variable initializations
authorColin Ian King <colin.king@canonical.com>
Tue, 3 Aug 2021 14:49:47 +0000 (15:49 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Sat, 21 Aug 2021 17:32:38 +0000 (20:32 +0300)
The variables rtstatus and place are being initialized with a values
that are never read, the initializations are redundant and can be removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Acked-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210803144949.79433-1-colin.king@canonical.com
drivers/net/wireless/realtek/rtlwifi/rtl8192de/phy.c

index 76dd881ef9bbb8c1b642ee006328605980967a0e..50c2d8f6f9c07cd2a54586cedeabb2439e717762 100644 (file)
@@ -681,7 +681,7 @@ static bool _rtl92d_phy_bb_config(struct ieee80211_hw *hw)
        struct rtl_priv *rtlpriv = rtl_priv(hw);
        struct rtl_phy *rtlphy = &(rtlpriv->phy);
        struct rtl_efuse *rtlefuse = rtl_efuse(rtl_priv(hw));
-       bool rtstatus = true;
+       bool rtstatus;
 
        rtl_dbg(rtlpriv, COMP_INIT, DBG_TRACE, "==>\n");
        rtstatus = _rtl92d_phy_config_bb_with_headerfile(hw,
@@ -887,7 +887,7 @@ static void _rtl92d_ccxpower_index_check(struct ieee80211_hw *hw,
 
 static u8 _rtl92c_phy_get_rightchnlplace(u8 chnl)
 {
-       u8 place = chnl;
+       u8 place;
 
        if (chnl > 14) {
                for (place = 14; place < sizeof(channel5g); place++) {