aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/agg-rx.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/mac80211/agg-rx.c')
-rw-r--r--net/mac80211/agg-rx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c
index bb1f8740cbd5..3112bfd441b6 100644
--- a/net/mac80211/agg-rx.c
+++ b/net/mac80211/agg-rx.c
@@ -17,8 +17,8 @@
17#include <net/mac80211.h> 17#include <net/mac80211.h>
18#include "ieee80211_i.h" 18#include "ieee80211_i.h"
19 19
20static void __ieee80211_sta_stop_rx_ba_session(struct sta_info *sta, u16 tid, 20void __ieee80211_stop_rx_ba_session(struct sta_info *sta, u16 tid,
21 u16 initiator, u16 reason) 21 u16 initiator, u16 reason)
22{ 22{
23 struct ieee80211_local *local = sta->local; 23 struct ieee80211_local *local = sta->local;
24 struct ieee80211_hw *hw = &local->hw; 24 struct ieee80211_hw *hw = &local->hw;
@@ -96,7 +96,7 @@ void ieee80211_sta_stop_rx_ba_session(struct ieee80211_sub_if_data *sdata, u8 *r
96 return; 96 return;
97 } 97 }
98 98
99 __ieee80211_sta_stop_rx_ba_session(sta, tid, initiator, reason); 99 __ieee80211_stop_rx_ba_session(sta, tid, initiator, reason);
100 100
101 rcu_read_unlock(); 101 rcu_read_unlock();
102} 102}