diff options
author | Wen Gong <wgong@codeaurora.org> | 2020-11-23 16:45:52 +0800 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2020-12-04 12:35:58 +0100 |
commit | 8fca2b8706f39f86312c086229e0cb364f8b4f97 (patch) | |
tree | 86748ce9b8337d2f219ec7e4729421657310cbe4 /net/mac80211/util.c | |
parent | bbe2ba04c5a92a49db8a42c850a5a2f6481e47eb (diff) |
mac80211: fix return value of ieee80211_chandef_he_6ghz_oper
ieee80211_chandef_he_6ghz_oper() needs to return true if it
determined a value 6 GHz chandef, fix that.
Fixes: 1d00ce807efa ("mac80211: support S1G association")
Signed-off-by: Wen Gong <wgong@codeaurora.org>
Link: https://lore.kernel.org/r/1606121152-3452-1-git-send-email-wgong@codeaurora.org
[rewrite commit message]
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r-- | net/mac80211/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index 49342060490f..94e624e9439b 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -3455,7 +3455,7 @@ bool ieee80211_chandef_he_6ghz_oper(struct ieee80211_sub_if_data *sdata, *chandef = he_chandef; - return false; + return true; } bool ieee80211_chandef_s1g_oper(const struct ieee80211_s1g_oper_ie *oper, |