diff options
author | John W. Linville <linville@tuxdriver.com> | 2010-07-28 10:06:35 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-07-29 12:46:45 -0400 |
commit | 4c85ab11ca56da1aa59b58c80cc6a356515cc645 (patch) | |
tree | b3ade66729d16095ba9d07949124ce576a177d9a /drivers/net/wireless/ath | |
parent | 4552124543141debf40a94b67155e57aa6bb34d6 (diff) | |
download | kernel_samsung_crespo-4c85ab11ca56da1aa59b58c80cc6a356515cc645.zip kernel_samsung_crespo-4c85ab11ca56da1aa59b58c80cc6a356515cc645.tar.gz kernel_samsung_crespo-4c85ab11ca56da1aa59b58c80cc6a356515cc645.tar.bz2 |
ath9k: enable serialize_regmode for non-PCIE AR9160
https://bugzilla.kernel.org/show_bug.cgi?id=16476
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Acked-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Cc: stable@kernel.org
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 3 |
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 2f83f97..8d291cc 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c @@ -532,7 +532,8 @@ static int __ath9k_hw_init(struct ath_hw *ah) if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) { if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI || - (AR_SREV_9280(ah) && !ah->is_pciexpress)) { + ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) && + !ah->is_pciexpress)) { ah->config.serialize_regmode = SER_REG_MODE_ON; } else { |