ath6kl: Don't advertise HT40 support in 2.4 Ghz
authorVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Mon, 9 Apr 2012 13:33:57 +0000 (19:03 +0530)
committerKalle Valo <kvalo@qca.qualcomm.com>
Mon, 9 Apr 2012 15:25:56 +0000 (18:25 +0300)
HT40 is not supported in 2.4Ghz.

Signed-off-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath6kl/cfg80211.c

index 06f12da554e10c244620c3888fb0d8cd36f6378a..1229ce96ba908bf376804d4cc340d8c613696802 100644 (file)
@@ -71,7 +71,8 @@ static struct ieee80211_rate ath6kl_rates[] = {
 #define ath6kl_g_rates     (ath6kl_rates + 0)
 #define ath6kl_g_rates_size    12
 
-#define ath6kl_g_htcap (IEEE80211_HT_CAP_SUP_WIDTH_20_40 | \
+#define ath6kl_g_htcap IEEE80211_HT_CAP_SGI_20
+#define ath6kl_a_htcap (IEEE80211_HT_CAP_SUP_WIDTH_20_40 | \
                        IEEE80211_HT_CAP_SGI_20          | \
                        IEEE80211_HT_CAP_SGI_40)
 
@@ -128,7 +129,7 @@ static struct ieee80211_supported_band ath6kl_band_5ghz = {
        .channels = ath6kl_5ghz_a_channels,
        .n_bitrates = ath6kl_a_rates_size,
        .bitrates = ath6kl_a_rates,
-       .ht_cap.cap = ath6kl_g_htcap,
+       .ht_cap.cap = ath6kl_a_htcap,
        .ht_cap.ht_supported = true,
 };
 
This page took 0.029209 seconds and 5 git commands to generate.