55 lines
2.3 KiB
Diff
55 lines
2.3 KiB
Diff
|
brcmsmac cannot call freq_reg_info() during channel changes as it does
|
||
|
not hold cfg80211_lock, and as a result it generates a lockdep warning.
|
||
|
freq_reg_info() is being used to determine whether OFDM is allowed on
|
||
|
the current channel, so we can avoid the errant call by using the new
|
||
|
IEEE80211_CHAN_NO_OFDM for this purpose instead.
|
||
|
|
||
|
Reported-by: Josh Boyer <jwboyer@redhat.com>
|
||
|
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
|
||
|
---
|
||
|
drivers/net/wireless/brcm80211/brcmsmac/channel.c | 5 +----
|
||
|
.../net/wireless/brcm80211/brcmsmac/mac80211_if.c | 3 ++-
|
||
|
2 files changed, 3 insertions(+), 5 deletions(-)
|
||
|
|
||
|
diff --git a/drivers/net/wireless/brcm80211/brcmsmac/channel.c b/drivers/net/wireless/brcm80211/brcmsmac/channel.c
|
||
|
index 9a4c63f..7ed7d75 100644
|
||
|
--- a/drivers/net/wireless/brcm80211/brcmsmac/channel.c
|
||
|
+++ b/drivers/net/wireless/brcm80211/brcmsmac/channel.c
|
||
|
@@ -382,9 +382,7 @@ brcms_c_channel_set_chanspec(struct brcms_cm_info *wlc_cm, u16 chanspec,
|
||
|
{
|
||
|
struct brcms_c_info *wlc = wlc_cm->wlc;
|
||
|
struct ieee80211_channel *ch = wlc->pub->ieee_hw->conf.channel;
|
||
|
- const struct ieee80211_reg_rule *reg_rule;
|
||
|
struct txpwr_limits txpwr;
|
||
|
- int ret;
|
||
|
|
||
|
brcms_c_channel_reg_limits(wlc_cm, chanspec, &txpwr);
|
||
|
|
||
|
@@ -393,8 +391,7 @@ brcms_c_channel_set_chanspec(struct brcms_cm_info *wlc_cm, u16 chanspec,
|
||
|
);
|
||
|
|
||
|
/* set or restore gmode as required by regulatory */
|
||
|
- ret = freq_reg_info(wlc->wiphy, ch->center_freq, 0, ®_rule);
|
||
|
- if (!ret && (reg_rule->flags & NL80211_RRF_NO_OFDM))
|
||
|
+ if (ch->flags & IEEE80211_CHAN_NO_OFDM)
|
||
|
brcms_c_set_gmode(wlc, GMODE_LEGACY_B, false);
|
||
|
else
|
||
|
brcms_c_set_gmode(wlc, wlc->protection->gmode_user, false);
|
||
|
diff --git a/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c b/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c
|
||
|
index 9e79d47..192ad5c 100644
|
||
|
--- a/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c
|
||
|
+++ b/drivers/net/wireless/brcm80211/brcmsmac/mac80211_if.c
|
||
|
@@ -121,7 +121,8 @@ static struct ieee80211_channel brcms_2ghz_chantable[] = {
|
||
|
IEEE80211_CHAN_NO_HT40PLUS),
|
||
|
CHAN2GHZ(14, 2484,
|
||
|
IEEE80211_CHAN_PASSIVE_SCAN | IEEE80211_CHAN_NO_IBSS |
|
||
|
- IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS)
|
||
|
+ IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS |
|
||
|
+ IEEE80211_CHAN_NO_OFDM)
|
||
|
};
|
||
|
|
||
|
static struct ieee80211_channel brcms_5ghz_nphy_chantable[] = {
|
||
|
--
|
||
|
1.7.9.5
|
||
|
|