diff options
author | Muna Sinada <quic_msinada@quicinc.com> | 2022-03-23 23:46:35 +0100 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2022-05-04 22:50:01 +0200 |
commit | 36f8423597000bd7d5e48b7b306e1d0958e72359 (patch) | |
tree | c3f89b0bd205c1a24d81c43ead2b6db76a1a49b5 /include/net/cfg80211.h | |
parent | mac80211: upgrade passive scan to active scan on DFS channels after beacon rx (diff) | |
download | linux-36f8423597000bd7d5e48b7b306e1d0958e72359.tar.xz linux-36f8423597000bd7d5e48b7b306e1d0958e72359.zip |
cfg80211: support disabling EHT mode
Allow userspace to disable EHT mode during association.
Signed-off-by: Muna Sinada <quic_msinada@quicinc.com>
Signed-off-by: Aloka Dixit <quic_alokad@quicinc.com>
Link: https://lore.kernel.org/r/20220323224636.20211-1-quic_alokad@quicinc.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index cd1212113901..6a3e3f0a8615 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h @@ -2735,6 +2735,7 @@ struct cfg80211_auth_request { * userspace if this flag is set. Only applicable for cfg80211_connect() * request (connect callback). * @ASSOC_REQ_DISABLE_HE: Disable HE + * @ASSOC_REQ_DISABLE_EHT: Disable EHT */ enum cfg80211_assoc_req_flags { ASSOC_REQ_DISABLE_HT = BIT(0), @@ -2742,6 +2743,7 @@ enum cfg80211_assoc_req_flags { ASSOC_REQ_USE_RRM = BIT(2), CONNECT_REQ_EXTERNAL_AUTH_SUPPORT = BIT(3), ASSOC_REQ_DISABLE_HE = BIT(4), + ASSOC_REQ_DISABLE_EHT = BIT(5), }; /** |