rtl8xxxu: Remove unused clutter for handling recursive calls to rtl8xxxu_init_device()

This was a leftover from the vendor driver that was never utilized.

Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Jes Sorensen
2016-02-03 13:39:48 -05:00
committed by Kalle Valo
parent ce6f2e3669
commit e5c447ccf8
2 changed files with 1 additions and 12 deletions

View File

@@ -4289,17 +4289,7 @@ static int rtl8xxxu_init_device(struct ieee80211_hw *hw)
rtl8xxxu_write16(priv, REG_FAST_EDCA_CTRL, 0);
/*
* Not sure if we should get into this at all
*/
if (priv->iqk_initialized) {
rtl8xxxu_restore_regs(priv, rtl8723au_iqk_phy_iq_bb_reg,
priv->bb_recovery_backup,
RTL8XXXU_BB_REGS);
} else {
rtl8723a_phy_iq_calibrate(priv);
priv->iqk_initialized = true;
}
rtl8723a_phy_iq_calibrate(priv);
/*
* This should enable thermal meter

View File

@@ -652,7 +652,6 @@ struct rtl8xxxu_priv {
u32 bb_recovery_backup[RTL8XXXU_BB_REGS];
u32 rtlchip;
u8 pi_enabled:1;
u8 iqk_initialized:1;
u8 int_buf[USB_INTR_CONTENT_LENGTH];
};