mirror of https://gitee.com/openkylin/linux.git
ath9k_hw: Program appropriate chianmask for AR9485 before starting AGC/IQ cal
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
5f139eba41
commit
6559e83ebd
|
@ -721,7 +721,9 @@ static bool ar9003_hw_init_cal(struct ath_hw *ah,
|
|||
val = REG_READ(ah, AR_ENT_OTP);
|
||||
ath_dbg(common, ATH_DBG_CALIBRATE, "ath9k: AR_ENT_OTP 0x%x\n", val);
|
||||
|
||||
if (val & AR_ENT_OTP_CHAIN2_DISABLE)
|
||||
if (AR_SREV_9485(ah))
|
||||
ar9003_hw_set_chain_masks(ah, 0x1, 0x1);
|
||||
else if (val & AR_ENT_OTP_CHAIN2_DISABLE)
|
||||
ar9003_hw_set_chain_masks(ah, 0x3, 0x3);
|
||||
else
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue