aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211
diff options
context:
space:
mode:
Diffstat (limited to 'net/mac80211')
-rw-r--r--net/mac80211/ibss.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/net/mac80211/ibss.c b/net/mac80211/ibss.c
index 8fa1c27bdfe3..449702df24ab 100644
--- a/net/mac80211/ibss.c
+++ b/net/mac80211/ibss.c
@@ -85,6 +85,14 @@ static void __ieee80211_sta_join_ibss(struct ieee80211_sub_if_data *sdata,
85 85
86 chandef = ifibss->chandef; 86 chandef = ifibss->chandef;
87 if (!cfg80211_reg_can_beacon(local->hw.wiphy, &chandef)) { 87 if (!cfg80211_reg_can_beacon(local->hw.wiphy, &chandef)) {
88 if (chandef.width == NL80211_CHAN_WIDTH_5 ||
89 chandef.width == NL80211_CHAN_WIDTH_10 ||
90 chandef.width == NL80211_CHAN_WIDTH_20_NOHT ||
91 chandef.width == NL80211_CHAN_WIDTH_20) {
92 sdata_info(sdata,
93 "Failed to join IBSS, beacons forbidden\n");
94 return;
95 }
88 chandef.width = NL80211_CHAN_WIDTH_20; 96 chandef.width = NL80211_CHAN_WIDTH_20;
89 chandef.center_freq1 = chan->center_freq; 97 chandef.center_freq1 = chan->center_freq;
90 } 98 }