diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2009-02-10 21:25:52 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-13 19:45:44 +0100 |
commit | 2dace10efb8b761ccbd18d524f3b14d823edf8c0 (patch) | |
tree | eb067b3081a33bcf3c7cb2b896ac4d844fce2d3e /net/mac80211/mlme.c | |
parent | mac80211: fix aggregation timer lockups (diff) | |
download | linux-2dace10efb8b761ccbd18d524f3b14d823edf8c0.tar.xz linux-2dace10efb8b761ccbd18d524f3b14d823edf8c0.zip |
mac80211: clean up BA session teardown
The sta_info pointer can very well be passed to
ieee80211_sta_tear_down_BA_sessions, this will
later allow us to pass it through even further.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to '')
-rw-r--r-- | net/mac80211/mlme.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 169f10c51042..bfc47b330687 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -954,7 +954,7 @@ static void ieee80211_set_disassoc(struct ieee80211_sub_if_data *sdata, netif_tx_stop_all_queues(sdata->dev); netif_carrier_off(sdata->dev); - ieee80211_sta_tear_down_BA_sessions(sdata, sta->sta.addr); + ieee80211_sta_tear_down_BA_sessions(sta); if (self_disconnected) { if (deauth) |