aboutsummaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>2015-03-16 23:23:36 +0200
committerJohannes Berg <johannes.berg@intel.com>2015-03-30 10:17:11 +0200
commitd0d1a12f9cc665f3fcac5288ab84429a91abd4e9 (patch)
tree41f02d2b43570ffda1f3db3302dfe45f748d9e07 /include/net
parenta9409093d23c822d13a73f8d2df7e6fa987ae485 (diff)
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')
-rw-r--r--include/net/mac80211.h2
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,
};
/**