]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ath9k: Disable TX STBC for AR9485
authorVasanthakumar Thiagarajan <vasanth@atheros.com>
Mon, 6 Dec 2010 12:27:41 +0000 (04:27 -0800)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 7 Dec 2010 21:34:53 +0000 (16:34 -0500)
Signed-off-by: Vasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/init.c

index 5987ed1cd97455c1d11c7bb5a1b18adae2170a98..bd451c243689a1c13a19952f349cc09d04306da9 100644 (file)
@@ -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;