diff options
author | Vasanthakumar Thiagarajan | 2012-04-09 15:33:57 +0200 |
---|---|---|
committer | Kalle Valo | 2012-04-09 17:25:56 +0200 |
commit | bed56e313ada1d25d16e4101677c8f75eda78c60 (patch) | |
tree | e5965489566dde7a7b78ce2c76643008c0d14e3a /drivers/net/wireless/ath/ath6kl | |
parent | ath6kl: Fix target assert in p2p bringup with multi vif (diff) | |
download | kernel-qcow2-linux-bed56e313ada1d25d16e4101677c8f75eda78c60.tar.gz kernel-qcow2-linux-bed56e313ada1d25d16e4101677c8f75eda78c60.tar.xz kernel-qcow2-linux-bed56e313ada1d25d16e4101677c8f75eda78c60.zip |
ath6kl: Don't advertise HT40 support in 2.4 Ghz
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>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/cfg80211.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/cfg80211.c b/drivers/net/wireless/ath/ath6kl/cfg80211.c index 06f12da554e1..1229ce96ba90 100644 --- a/drivers/net/wireless/ath/ath6kl/cfg80211.c +++ b/drivers/net/wireless/ath/ath6kl/cfg80211.c @@ -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, }; |