diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2009-01-27 00:25:31 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-30 13:38:21 -0500 |
commit | 3c4572657656117c1f9cf1df42e681ea71abb2db (patch) | |
tree | f37cd546c69f9320ae151a22fb0e449121de07e5 /drivers/net/wireless/ath9k/main.c | |
parent | fb9ddbf086591ab4c90c44d10468f84d465b3fdf (diff) |
ath9k: Handle chainmask for A9280
The default chainmask for AR9280 is 3, so handle that when setting
the supported MCS rates. Also, check for the HW supported chainmask
when choosing single/dual stream.
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/main.c')
-rw-r--r-- | drivers/net/wireless/ath9k/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath9k/main.c b/drivers/net/wireless/ath9k/main.c index ede8980be962..04a605103719 100644 --- a/drivers/net/wireless/ath9k/main.c +++ b/drivers/net/wireless/ath9k/main.c | |||
@@ -876,6 +876,7 @@ static void setup_ht_cap(struct ath_softc *sc, | |||
876 | case 1: | 876 | case 1: |
877 | ht_info->mcs.rx_mask[0] = 0xff; | 877 | ht_info->mcs.rx_mask[0] = 0xff; |
878 | break; | 878 | break; |
879 | case 3: | ||
879 | case 5: | 880 | case 5: |
880 | case 7: | 881 | case 7: |
881 | default: | 882 | default: |