ath9k_hw: shift code for AR9280 OLC temp comp
We're bailing out on the alternative code path so remove the else branch. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
becdbc542f
commit
80b99932fd
@@ -711,9 +711,9 @@ static void ath9k_olc_temp_compensation(struct ath_hw *ah)
|
||||
rddata = REG_READ(ah, AR_PHY_TX_PWRCTRL4);
|
||||
currPDADC = MS(rddata, AR_PHY_TX_PWRCTRL_PD_AVG_OUT);
|
||||
|
||||
if (ah->initPDADC == 0 || currPDADC == 0) {
|
||||
if (ah->initPDADC == 0 || currPDADC == 0)
|
||||
return;
|
||||
} else {
|
||||
|
||||
if (ah->eep_ops->get_eeprom(ah, EEP_DAC_HPWR_5G))
|
||||
delta = (currPDADC - ah->initPDADC + 4) / 8;
|
||||
else
|
||||
@@ -732,7 +732,6 @@ static void ath9k_olc_temp_compensation(struct ath_hw *ah)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void ath9k_hw_9271_pa_cal(struct ath_hw *ah, bool is_reset)
|
||||
|
Reference in New Issue
Block a user