Commit 533e3de4 authored by zhengbin's avatar zhengbin Committed by Kalle Valo

rtlwifi: rtl8192ee: Remove set but not used variables 'reg_ecc','reg_eac'

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c: In function rtl92ee_phy_iq_calibrate:
drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:2805:34: warning: variable reg_ecc set but not used [-Wunused-but-set-variable]
drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c: In function rtl92ee_phy_iq_calibrate:
drivers/net/wireless/realtek/rtlwifi/rtl8192ee/phy.c:2804:34: warning: variable reg_eac set but not used [-Wunused-but-set-variable]

They are not used since commit b1a3bfc9 ("rtlwifi:
rtl8192ee: Move driver from staging to the regular tree")
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarzhengbin <zhengbin13@huawei.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 4a26e115
...@@ -2801,8 +2801,8 @@ void rtl92ee_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery) ...@@ -2801,8 +2801,8 @@ void rtl92ee_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery)
long result[4][8]; long result[4][8];
u8 i, final_candidate; u8 i, final_candidate;
bool b_patha_ok, b_pathb_ok; bool b_patha_ok, b_pathb_ok;
long reg_e94, reg_e9c, reg_ea4, reg_eac; long reg_e94, reg_e9c, reg_ea4;
long reg_eb4, reg_ebc, reg_ec4, reg_ecc; long reg_eb4, reg_ebc, reg_ec4;
bool is12simular, is13simular, is23simular; bool is12simular, is13simular, is23simular;
u8 idx; u8 idx;
u32 iqk_bb_reg[IQK_BB_REG_NUM] = { u32 iqk_bb_reg[IQK_BB_REG_NUM] = {
...@@ -2873,11 +2873,9 @@ void rtl92ee_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery) ...@@ -2873,11 +2873,9 @@ void rtl92ee_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery)
reg_e94 = result[i][0]; reg_e94 = result[i][0];
reg_e9c = result[i][1]; reg_e9c = result[i][1];
reg_ea4 = result[i][2]; reg_ea4 = result[i][2];
reg_eac = result[i][3];
reg_eb4 = result[i][4]; reg_eb4 = result[i][4];
reg_ebc = result[i][5]; reg_ebc = result[i][5];
reg_ec4 = result[i][6]; reg_ec4 = result[i][6];
reg_ecc = result[i][7];
} }
if (final_candidate != 0xff) { if (final_candidate != 0xff) {
...@@ -2886,13 +2884,11 @@ void rtl92ee_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery) ...@@ -2886,13 +2884,11 @@ void rtl92ee_phy_iq_calibrate(struct ieee80211_hw *hw, bool b_recovery)
reg_e9c = result[final_candidate][1]; reg_e9c = result[final_candidate][1];
rtlphy->reg_e9c = reg_e9c; rtlphy->reg_e9c = reg_e9c;
reg_ea4 = result[final_candidate][2]; reg_ea4 = result[final_candidate][2];
reg_eac = result[final_candidate][3];
reg_eb4 = result[final_candidate][4]; reg_eb4 = result[final_candidate][4];
rtlphy->reg_eb4 = reg_eb4; rtlphy->reg_eb4 = reg_eb4;
reg_ebc = result[final_candidate][5]; reg_ebc = result[final_candidate][5];
rtlphy->reg_ebc = reg_ebc; rtlphy->reg_ebc = reg_ebc;
reg_ec4 = result[final_candidate][6]; reg_ec4 = result[final_candidate][6];
reg_ecc = result[final_candidate][7];
b_patha_ok = true; b_patha_ok = true;
b_pathb_ok = true; b_pathb_ok = true;
} else { } else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment