]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - drivers/net/wireless/marvell/mwifiex/cfg80211.c
mwifiex: apply radar flag
[karo-tx-linux.git] / drivers / net / wireless / marvell / mwifiex / cfg80211.c
index 1e3bd435a694534f4a450b32e8b0bd69702e5269..44d06177859e75a680c7f100b4c5de47fae89940 100644 (file)
@@ -594,6 +594,24 @@ int mwifiex_send_domain_info_cmd_fw(struct wiphy *wiphy)
        return 0;
 }
 
+static void mwifiex_reg_apply_radar_flags(struct wiphy *wiphy)
+{
+       struct ieee80211_supported_band *sband;
+       struct ieee80211_channel *chan;
+       unsigned int i;
+
+       if (!wiphy->bands[NL80211_BAND_5GHZ])
+               return;
+       sband = wiphy->bands[NL80211_BAND_5GHZ];
+
+       for (i = 0; i < sband->n_channels; i++) {
+               chan = &sband->channels[i];
+               if ((!(chan->flags & IEEE80211_CHAN_DISABLED)) &&
+                   (chan->flags & IEEE80211_CHAN_RADAR))
+                       chan->flags |= IEEE80211_CHAN_NO_IR;
+       }
+}
+
 /*
  * CFG802.11 regulatory domain callback function.
  *
@@ -613,6 +631,7 @@ static void mwifiex_reg_notifier(struct wiphy *wiphy,
        mwifiex_dbg(adapter, INFO,
                    "info: cfg80211 regulatory domain callback for %c%c\n",
                    request->alpha2[0], request->alpha2[1]);
+       mwifiex_reg_apply_radar_flags(wiphy);
 
        switch (request->initiator) {
        case NL80211_REGDOM_SET_BY_DRIVER: