Prev: [24/38] ath9k_hw: fix antenna diversity on AR9285
Next: GSoC 2010 - Memory hotplug support for Xen guests - second fully working version - once again
From: Greg KH on 6 Aug 2010 14:50 2.6.35-stable review patch. If anyone has any objections, please let us know. ------------------ From: John W. Linville <linville(a)tuxdriver.com> commit 4c85ab11ca56da1aa59b58c80cc6a356515cc645 upstream. https://bugzilla.kernel.org/show_bug.cgi?id=16476 Signed-off-by: John W. Linville <linville(a)tuxdriver.com> Acked-by: Luis R. Rodriguez <lrodriguez(a)atheros.com> Signed-off-by: Greg Kroah-Hartman <gregkh(a)suse.de> --- drivers/net/wireless/ath/ath9k/hw.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c @@ -537,7 +537,8 @@ static int __ath9k_hw_init(struct ath_hw 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 { -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |