From: Arend van Spriel Date: Fri, 2 Aug 2019 11:31:03 +0000 (+0200) Subject: cfg80211: use same IR permissive rules for 6GHz band X-Git-Tag: microblaze-v5.5-rc1~160^2~194^2~10 X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=0816e6b1177adb4f120767434c67441c30de10d2;p=linux-2.6-microblaze.git cfg80211: use same IR permissive rules for 6GHz band The function cfg80211_ir_permissive_chan() is applicable for 6GHz band as well so make sure it is handled. Reviewed-by: Pieter-Paul Giesberts Reviewed-by: Leon Zegers Signed-off-by: Arend van Spriel Link: https://lore.kernel.org/r/1564745465-21234-7-git-send-email-arend.vanspriel@broadcom.com Signed-off-by: Johannes Berg --- diff --git a/net/wireless/chan.c b/net/wireless/chan.c index 7dc1bbd0888f..7c9d204838d4 100644 --- a/net/wireless/chan.c +++ b/net/wireless/chan.c @@ -894,7 +894,8 @@ static bool cfg80211_ir_permissive_chan(struct wiphy *wiphy, if (chan == other_chan) return true; - if (chan->band != NL80211_BAND_5GHZ) + if (chan->band != NL80211_BAND_5GHZ && + chan->band != NL80211_BAND_6GHZ) continue; r1 = cfg80211_get_unii(chan->center_freq);