ath9k_hw: Fix AR_RTC_KEEP_AWAKE usage
The default value that is being programmed to AR_RTC_KEEP_AWAKE is 0x2, there is no need to program it manually in various functions. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Родитель
e270e776a0
Коммит
83c7a52dcc
|
@ -330,7 +330,6 @@ void ar9003_mci_set_full_sleep(struct ath_hw *ah)
|
||||||
}
|
}
|
||||||
|
|
||||||
mci->ready = false;
|
mci->ready = false;
|
||||||
REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ar9003_mci_disable_interrupt(struct ath_hw *ah)
|
static void ar9003_mci_disable_interrupt(struct ath_hw *ah)
|
||||||
|
|
|
@ -1432,9 +1432,6 @@ static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
|
|
||||||
REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2167,10 +2164,6 @@ bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
|
||||||
switch (mode) {
|
switch (mode) {
|
||||||
case ATH9K_PM_AWAKE:
|
case ATH9K_PM_AWAKE:
|
||||||
status = ath9k_hw_set_power_awake(ah, setChip);
|
status = ath9k_hw_set_power_awake(ah, setChip);
|
||||||
|
|
||||||
if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
|
|
||||||
REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case ATH9K_PM_FULL_SLEEP:
|
case ATH9K_PM_FULL_SLEEP:
|
||||||
if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
|
if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
|
||||||
|
@ -2180,10 +2173,6 @@ bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
|
||||||
ah->chip_fullsleep = true;
|
ah->chip_fullsleep = true;
|
||||||
break;
|
break;
|
||||||
case ATH9K_PM_NETWORK_SLEEP:
|
case ATH9K_PM_NETWORK_SLEEP:
|
||||||
|
|
||||||
if (ah->caps.hw_caps & ATH9K_HW_CAP_MCI)
|
|
||||||
REG_WRITE(ah, AR_RTC_KEEP_AWAKE, 0x2);
|
|
||||||
|
|
||||||
ath9k_set_power_network_sleep(ah, setChip);
|
ath9k_set_power_network_sleep(ah, setChip);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Загрузка…
Ссылка в новой задаче