From: Vasanthakumar Thiagarajan Date: Mon, 6 Dec 2010 12:27:41 +0000 (-0800) Subject: ath9k: Disable TX STBC for AR9485 X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=7f1c7a6ac57ff0482219aa3f62eb9d0f8fe65867;p=deliverable%2Flinux.git ath9k: Disable TX STBC for AR9485 Signed-off-by: Vasanthakumar Thiagarajan Signed-off-by: John W. Linville --- 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, ht_info->ampdu_factor = IEEE80211_HT_MAX_AMPDU_64K; ht_info->ampdu_density = IEEE80211_HT_MPDU_DENSITY_8; - if (AR_SREV_9300_20_OR_LATER(ah)) + if (AR_SREV_9485(ah)) + max_streams = 1; + else if (AR_SREV_9300_20_OR_LATER(ah)) max_streams = 3; else max_streams = 2;