diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-06-17 20:53:21 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-06-19 11:50:23 -0400 |
commit | 38ab422e64d991472ce21ffdd7a37e8a02279697 (patch) | |
tree | 6370389e0d8472c9aff7eef5d705032504462768 | |
parent | 58f5fffdc3b8567b3fa8ed77d75699db87e2d1d4 (diff) | |
download | op-kernel-dev-38ab422e64d991472ce21ffdd7a37e8a02279697.zip op-kernel-dev-38ab422e64d991472ce21ffdd7a37e8a02279697.tar.gz |
ath9k: restore PS mode, before we put the chip into FULL SLEEP state.
We want to put the chip into FULL SLEEP state, when we are disabling the
radio, but the the current code always change it to AWAKE/NETWORK SLEEP.
Changes-licensed-under: ISC
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/ath/ath9k/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 9f49a32..66a6c1f 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c @@ -1196,8 +1196,8 @@ void ath_radio_disable(struct ath_softc *sc) ath9k_hw_phy_disable(ah); ath9k_hw_configpcipowersave(ah, 1); - ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP); ath9k_ps_restore(sc); + ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP); } /*******************/ |