diff options
author | Vasanthakumar Thiagarajan <vasanth@atheros.com> | 2010-12-06 07:27:41 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-12-07 16:34:53 -0500 |
commit | 7f1c7a6ac57ff0482219aa3f62eb9d0f8fe65867 (patch) | |
tree | 399424d57a2b7ab5cd2898240b4de046caa79d4a /drivers | |
parent | 784ad50324ec531fa4ab22586fe305657cc6e307 (diff) |
ath9k: Disable TX STBC for AR9485
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/init.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index 5987ed1cd974..bd451c243689 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c | |||
@@ -210,7 +210,9 @@ static void setup_ht_cap(struct ath_softc *sc, | |||
210 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; | 210 | ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; |
211 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; | 211 | ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; |
212 | 212 | ||
213 | if (AR_SREV_9300_20_OR_LATER(ah)) | 213 | if (AR_SREV_9485(ah)) |
214 | max_streams = 1; | ||
215 | else if (AR_SREV_9300_20_OR_LATER(ah)) | ||
214 | max_streams = 3; | 216 | max_streams = 3; |
215 | else | 217 | else |
216 | max_streams = 2; | 218 | max_streams = 2; |