diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-06-21 05:23:42 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-22 16:09:54 -0400 |
commit | 7216198d31450e273fefcb94b4eb3ea07da99131 (patch) | |
tree | e3475add3606140e3dfb052c8470af78b27ab20b /drivers | |
parent | 431da56a814959753f7ad6962f0bd5fa0430e508 (diff) |
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>
Diffstat (limited to 'drivers')
-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 661211291773..1851c222fff0 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, | |||
245 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; | 245 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
246 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; | 246 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; |
247 | 247 | ||
248 | if (AR_SREV_9485(ah)) | 248 | if (AR_SREV_9330(ah) || AR_SREV_9485(ah)) |
249 | max_streams = 1; | 249 | max_streams = 1; |
250 | else if (AR_SREV_9300_20_OR_LATER(ah)) | 250 | else if (AR_SREV_9300_20_OR_LATER(ah)) |
251 | max_streams = 3; | 251 | max_streams = 3; |