diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2015-03-16 23:23:34 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-03-30 10:17:09 +0200 |
commit | a818292952bbfad12ec5a32ab01330cb1ceed013 (patch) | |
tree | ad86dcdaf4e0ae381180d5c2f8545bef55de21c7 /net/mac80211/driver-ops.h | |
parent | 2c158887f1185e04b3763ae346da9f71fcbc4429 (diff) | |
download | blackbird-obmc-linux-a818292952bbfad12ec5a32ab01330cb1ceed013.tar.gz blackbird-obmc-linux-a818292952bbfad12ec5a32ab01330cb1ceed013.zip |
mac80211: convert rssi_callback() to event_callback()
We will be able to add more events, such as MLME events and
others. The low level driver may be interested in knowing
about these events to dump firmware data upon failures, or
to change parameters in case connection attempts fail etc...
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/driver-ops.h')
-rw-r--r-- | net/mac80211/driver-ops.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h index fdeda17b8dd2..0a39d3db951a 100644 --- a/net/mac80211/driver-ops.h +++ b/net/mac80211/driver-ops.h @@ -941,13 +941,13 @@ static inline void drv_set_rekey_data(struct ieee80211_local *local, trace_drv_return_void(local); } -static inline void drv_rssi_callback(struct ieee80211_local *local, - struct ieee80211_sub_if_data *sdata, - const enum ieee80211_rssi_event event) +static inline void drv_event_callback(struct ieee80211_local *local, + struct ieee80211_sub_if_data *sdata, + const struct ieee80211_event *event) { - trace_drv_rssi_callback(local, sdata, event); - if (local->ops->rssi_callback) - local->ops->rssi_callback(&local->hw, &sdata->vif, event); + trace_drv_event_callback(local, sdata, event); + if (local->ops->event_callback) + local->ops->event_callback(&local->hw, &sdata->vif, event); trace_drv_return_void(local); } |