aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorEliad Peller <eliad@wizery.com>2012-05-16 12:09:48 -0400
committerJohn W. Linville <linville@tuxdriver.com>2012-06-05 15:32:10 -0400
commit51ca9d8db280b960345e7306e6a036dd3880ecff (patch)
tree3fc742b198b2f1bade27d0d5e4b6c76e3b92bd2c /net/mac80211/mlme.c
parentb90bd9d14f866318497acee571f79e621a735d69 (diff)
mac80211: remove ieee80211_get_operstate()
ieee80211_get_operstate() was used by drivers in order to know whether the sta link is up, but it's no longer needed (nor used) as mac80211 notifies the drivers about authorization changes (via the sta_state callback) Signed-off-by: Eliad Peller <eliad@wizery.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 419301c69582..0c4e26ff7d91 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -3530,10 +3530,3 @@ void ieee80211_cqm_rssi_notify(struct ieee80211_vif *vif,
3530 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp); 3530 cfg80211_cqm_rssi_notify(sdata->dev, rssi_event, gfp);
3531} 3531}
3532EXPORT_SYMBOL(ieee80211_cqm_rssi_notify); 3532EXPORT_SYMBOL(ieee80211_cqm_rssi_notify);
3533
3534unsigned char ieee80211_get_operstate(struct ieee80211_vif *vif)
3535{
3536 struct ieee80211_sub_if_data *sdata = vif_to_sdata(vif);
3537 return sdata->dev->operstate;
3538}
3539EXPORT_SYMBOL(ieee80211_get_operstate);