diff options
author | Janusz.Dziedzic@tieto.com <Janusz.Dziedzic@tieto.com> | 2015-02-21 10:52:39 -0500 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-03-03 09:56:04 -0500 |
commit | ffc1199122d83d60ad99f9c55df32feb650b7bff (patch) | |
tree | 65398ef57e1478724b065762d0bdf6ac410ece73 /net | |
parent | 6eb18137643fee5f182d85c818062b4feddfb76b (diff) |
cfg80211: add VHT support for IBSS
Add NL80211_EXT_FEATURE_VHT_IBSS flag and VHT
support for IBSS.
Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/wireless/nl80211.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 9c6e23ede5b2..66666fdf1c8d 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c | |||
@@ -7265,8 +7265,18 @@ static int nl80211_join_ibss(struct sk_buff *skb, struct genl_info *info) | |||
7265 | break; | 7265 | break; |
7266 | case NL80211_CHAN_WIDTH_20: | 7266 | case NL80211_CHAN_WIDTH_20: |
7267 | case NL80211_CHAN_WIDTH_40: | 7267 | case NL80211_CHAN_WIDTH_40: |
7268 | if (rdev->wiphy.features & NL80211_FEATURE_HT_IBSS) | 7268 | if (!(rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)) |
7269 | break; | 7269 | return -EINVAL; |
7270 | break; | ||
7271 | case NL80211_CHAN_WIDTH_80: | ||
7272 | case NL80211_CHAN_WIDTH_80P80: | ||
7273 | case NL80211_CHAN_WIDTH_160: | ||
7274 | if (!(rdev->wiphy.features & NL80211_FEATURE_HT_IBSS)) | ||
7275 | return -EINVAL; | ||
7276 | if (!wiphy_ext_feature_isset(&rdev->wiphy, | ||
7277 | NL80211_EXT_FEATURE_VHT_IBSS)) | ||
7278 | return -EINVAL; | ||
7279 | break; | ||
7270 | default: | 7280 | default: |
7271 | return -EINVAL; | 7281 | return -EINVAL; |
7272 | } | 7282 | } |