diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2015-03-17 00:23:36 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-03-30 11:17:11 +0300 |
commit | d0d1a12f9cc665f3fcac5288ab84429a91abd4e9 (patch) | |
tree | 41f02d2b43570ffda1f3db3302dfe45f748d9e07 /include/net/mac80211.h | |
parent | a9409093d23c822d13a73f8d2df7e6fa987ae485 (diff) | |
download | linux-d0d1a12f9cc665f3fcac5288ab84429a91abd4e9.tar.xz |
mac80211: notify the driver about association status
This can allow the driver to take action based on the
success / failure of the association.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r-- | include/net/mac80211.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h index 6cddf7725bf2..dcddc4ac4184 100644 --- a/include/net/mac80211.h +++ b/include/net/mac80211.h @@ -331,9 +331,11 @@ struct ieee80211_rssi_event { /** * enum ieee80211_mlme_event_data - relevant when event type is %MLME_EVENT * @AUTH_EVENT: the MLME operation is authentication + * @ASSOC_EVENT: the MLME operation is association */ enum ieee80211_mlme_event_data { AUTH_EVENT, + ASSOC_EVENT, }; /** |