diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-06-21 09:23:42 (GMT) |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-22 20:09:54 (GMT) |
commit | 7216198d31450e273fefcb94b4eb3ea07da99131 (patch) | |
tree | e3475add3606140e3dfb052c8470af78b27ab20b | |
parent | 431da56a814959753f7ad6962f0bd5fa0430e508 (diff) | |
download | linux-7216198d31450e273fefcb94b4eb3ea07da99131.tar.xz |
ath9k: use correct max_streams for AR9330
The AR9330 is a single stream chip.
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/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index 6612112..1851c22 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c @@ -245,7 +245,7 @@ static void setup_ht_cap(struct ath_softc *sc, ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; - if (AR_SREV_9485(ah)) + if (AR_SREV_9330(ah) || AR_SREV_9485(ah)) max_streams = 1; else if (AR_SREV_9300_20_OR_LATER(ah)) max_streams = 3; |