diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2010-05-19 11:32:30 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-06-04 15:32:25 -0400 |
commit | 38a6cc7538d3c44b76f9dcea607a171adcc0208e (patch) | |
tree | 6e32157add4ba09c4a35c5ec6a2f4b3bce765268 /net/mac80211 | |
parent | abd984e6117e72e17073fd0a81a477e43b4580f5 (diff) | |
download | blackbird-op-linux-38a6cc7538d3c44b76f9dcea607a171adcc0208e.tar.gz blackbird-op-linux-38a6cc7538d3c44b76f9dcea607a171adcc0208e.zip |
mac80211: Remove deprecated sta_notify commands
STA_NOTIFY_ADD and STA_NOTIFY_REMOVE have no users anymore,
and station addition/removal are indicated to drivers
using sta_add() and sta_remove(), which can sleep.
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Acked-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r-- | net/mac80211/driver-ops.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/net/mac80211/driver-ops.h b/net/mac80211/driver-ops.h index 978850ee3a5f..d1139e4f88a9 100644 --- a/net/mac80211/driver-ops.h +++ b/net/mac80211/driver-ops.h @@ -269,9 +269,6 @@ static inline int drv_sta_add(struct ieee80211_local *local, if (local->ops->sta_add) ret = local->ops->sta_add(&local->hw, &sdata->vif, sta); - else if (local->ops->sta_notify) - local->ops->sta_notify(&local->hw, &sdata->vif, - STA_NOTIFY_ADD, sta); trace_drv_sta_add(local, sdata, sta, ret); @@ -286,9 +283,6 @@ static inline void drv_sta_remove(struct ieee80211_local *local, if (local->ops->sta_remove) local->ops->sta_remove(&local->hw, &sdata->vif, sta); - else if (local->ops->sta_notify) - local->ops->sta_notify(&local->hw, &sdata->vif, - STA_NOTIFY_REMOVE, sta); trace_drv_sta_remove(local, sdata, sta); } |