diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2010-03-17 04:55:18 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-03-23 16:50:13 -0400 |
commit | 14b3af381df6359b15416df350e4e11892a52ab3 (patch) | |
tree | a6b9a5a51efc165bd15af1f7898605b6622413b7 /drivers/net/wireless/ath/ath9k/hw.c | |
parent | e492d7cfdbb49f364529bc1642b978d85654c398 (diff) |
ath9k_hw: Fix full sleep setup for AR9271
After telling the AR9271 to go into full sleep we do not need
to clear the RTC reset signal.
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index b1a4a8352f40..023c38bb846b 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c | |||
@@ -2453,7 +2453,7 @@ static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip) | |||
2453 | if (!AR_SREV_9100(ah)) | 2453 | if (!AR_SREV_9100(ah)) |
2454 | REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF); | 2454 | REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF); |
2455 | 2455 | ||
2456 | if(!AR_SREV_5416(ah)) | 2456 | if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah)) |
2457 | REG_CLR_BIT(ah, (AR_RTC_RESET), | 2457 | REG_CLR_BIT(ah, (AR_RTC_RESET), |
2458 | AR_RTC_RESET_EN); | 2458 | AR_RTC_RESET_EN); |
2459 | } | 2459 | } |