Commit faaf1929 authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by Kalle Valo

ath6kl: Register driver ht capabilities in wiphy

Register driver's ht capabilities in wiphy to avoid failures
in setting ht channels from hostapd.
Signed-off-by: default avatarVasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 4480bb59
...@@ -69,6 +69,10 @@ static struct ieee80211_rate ath6kl_rates[] = { ...@@ -69,6 +69,10 @@ static struct ieee80211_rate ath6kl_rates[] = {
#define ath6kl_g_rates (ath6kl_rates + 0) #define ath6kl_g_rates (ath6kl_rates + 0)
#define ath6kl_g_rates_size 12 #define ath6kl_g_rates_size 12
#define ath6kl_g_htcap (IEEE80211_HT_CAP_SUP_WIDTH_20_40 | \
IEEE80211_HT_CAP_SGI_20 | \
IEEE80211_HT_CAP_SGI_40)
static struct ieee80211_channel ath6kl_2ghz_channels[] = { static struct ieee80211_channel ath6kl_2ghz_channels[] = {
CHAN2G(1, 2412, 0), CHAN2G(1, 2412, 0),
CHAN2G(2, 2417, 0), CHAN2G(2, 2417, 0),
...@@ -113,6 +117,8 @@ static struct ieee80211_supported_band ath6kl_band_2ghz = { ...@@ -113,6 +117,8 @@ static struct ieee80211_supported_band ath6kl_band_2ghz = {
.channels = ath6kl_2ghz_channels, .channels = ath6kl_2ghz_channels,
.n_bitrates = ath6kl_g_rates_size, .n_bitrates = ath6kl_g_rates_size,
.bitrates = ath6kl_g_rates, .bitrates = ath6kl_g_rates,
.ht_cap.cap = ath6kl_g_htcap,
.ht_cap.ht_supported = true,
}; };
static struct ieee80211_supported_band ath6kl_band_5ghz = { static struct ieee80211_supported_band ath6kl_band_5ghz = {
...@@ -120,6 +126,8 @@ static struct ieee80211_supported_band ath6kl_band_5ghz = { ...@@ -120,6 +126,8 @@ static struct ieee80211_supported_band ath6kl_band_5ghz = {
.channels = ath6kl_5ghz_a_channels, .channels = ath6kl_5ghz_a_channels,
.n_bitrates = ath6kl_a_rates_size, .n_bitrates = ath6kl_a_rates_size,
.bitrates = ath6kl_a_rates, .bitrates = ath6kl_a_rates,
.ht_cap.cap = ath6kl_g_htcap,
.ht_cap.ht_supported = true,
}; };
#define CCKM_KRK_CIPHER_SUITE 0x004096ff /* use for KRK */ #define CCKM_KRK_CIPHER_SUITE 0x004096ff /* use for KRK */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment