diff options
| author | Matthew Wang <matthewmwang@chromium.org> | 2020-04-24 17:45:21 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-07-16 08:29:03 -0700 |
| commit | e8f888d64a122e3deb6fe67dbbcc6a9b78e5afb2 (patch) | |
| tree | 38f6a1ed7c3171a1016501e455e6ab82f0391e10 | |
| parent | 584385a8b9b145e9a86f7668eab6e40d9178526d (diff) | |
nl80211: add NL80211_CMD_UPDATE_FT_IES to supported commands
Add NL80211_CMD_UPDATE_FT_IES to supported commands.
In mac80211 drivers, this can be implemented via existing
NL80211_CMD_AUTHENTICATE and NL80211_ATTR_IE, but non-mac80211
drivers have a separate command for this. A driver supports FT
if it either is mac80211 or supports this command.
Signed-off-by: Matthew Wang <matthewmwang@chromium.org>
Reviewed-by: Brian Norris <briannorris@chromium.org>
Link: https://lore.kernel.org/r/20190822174806.2954-1-matthewmwang@chromium.org
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Git-commit: 7010998c6caf7cf9706f31c1880b7aeac904e874
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
Change-Id: Ibb33f0e7d0ea765b1aa5534e8416e4e5e04dd0ed
CRs-Fixed: 2626218
Signed-off-by: Vinita S. Maloo <vmaloo@codeaurora.org>
| -rw-r--r-- | net/wireless/nl80211.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 11a5ae596901..300ab8a51738 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -1606,6 +1606,7 @@ static int nl80211_send_wiphy(struct cfg80211_registered_device *rdev, NL80211_FEATURE_SUPPORTS_WMM_ADMISSION) CMD(add_tx_ts, ADD_TX_TS); CMD(update_connect_params, UPDATE_CONNECT_PARAMS); + CMD(update_ft_ies, UPDATE_FT_IES); } /* add into the if now */ #undef CMD |
