aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorRafael J. Wysocki <rjw@sisk.pl>2011-11-26 17:37:43 -0500
committerJohn W. Linville <linville@tuxdriver.com>2011-11-28 13:46:41 -0500
commita73228124bed4022d4d4c5663d9679ba2fb99c6c (patch)
treea7b9ec3018277dd050884d17cbec574698a01d1b /drivers/net/wireless
parente55b32c110b025ce07b40227f620e99700bf8741 (diff)
ath9k: Revert change that broke AR928X on Acer Ferrari One
Revert a hunk in drivers/net/wireless/ath/ath9k/hw.c introduced by commit 2577c6e8f2320f1d2f09be122efef5b9118efee4 (ath9k_hw: Add support for AR946/8x chipsets) that caused a nasty regression to appear on my Acer Ferrari One (the box locks up entirely at random times after the wireless has been started without any way to get debug information out of it). Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/ath/ath9k/hw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index b479160dc262..7a9c6f7cd7e1 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -1826,7 +1826,8 @@ static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
1826 } 1826 }
1827 1827
1828 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */ 1828 /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
1829 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE); 1829 if (AR_SREV_9300_20_OR_LATER(ah))
1830 REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
1830} 1831}
1831 1832
1832/* 1833/*