diff options
author | Oleksij Rempel <linux@rempel-privat.de> | 2014-02-25 14:48:54 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2014-02-28 20:33:15 +0100 |
commit | 91884fad852da4d00b1a5f5d57203e08884a3c1d (patch) | |
tree | 8390e2eeacea57eeb4f9be1ed1d35dbf898e9579 /drivers/net/wireless/ath/ath9k/common-init.c | |
parent | ath9k_htc: use ath9k_cmn_setup_ht_cap (diff) | |
download | linux-91884fad852da4d00b1a5f5d57203e08884a3c1d.tar.xz linux-91884fad852da4d00b1a5f5d57203e08884a3c1d.zip |
ath9k-common: set maxstream=1 for ar9271
Signed-off-by: Oleksij Rempel <linux@rempel-privat.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/common-init.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/common-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/common-init.c b/drivers/net/wireless/ath/ath9k/common-init.c index 8e2fa0385c58..8775ab2db2ef 100644 --- a/drivers/net/wireless/ath/ath9k/common-init.c +++ b/drivers/net/wireless/ath/ath9k/common-init.c @@ -191,7 +191,7 @@ void ath9k_cmn_setup_ht_cap(struct ath_hw *ah, ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; - if (AR_SREV_9330(ah) || AR_SREV_9485(ah) || AR_SREV_9565(ah)) + if (AR_SREV_9271(ah) || AR_SREV_9330(ah) || AR_SREV_9485(ah) || AR_SREV_9565(ah)) max_streams = 1; else if (AR_SREV_9462(ah)) max_streams = 2; |