diff options
author | Johannes Berg <johannes.berg@intel.com> | 2017-11-13 16:54:24 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2017-12-11 14:16:05 +0300 |
commit | a9d09bc1bcac89996fc961b1ae023d72171af7b6 (patch) | |
tree | ea71084e43985d04b685167e22327a6abdec2c4d /net/mac80211/agg-rx.c | |
parent | e2fb1b839208ad776c0ffbb55f17e6968389ce02 (diff) | |
download | linux-a9d09bc1bcac89996fc961b1ae023d72171af7b6.tar.xz |
mac80211: make __ieee80211_start_rx_ba_session static
The function is only used with the file, so make it static.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/agg-rx.c')
-rw-r--r-- | net/mac80211/agg-rx.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c index 35e94483fb8c..a8b1616cec41 100644 --- a/net/mac80211/agg-rx.c +++ b/net/mac80211/agg-rx.c @@ -404,10 +404,11 @@ end: timeout); } -void __ieee80211_start_rx_ba_session(struct sta_info *sta, - u8 dialog_token, u16 timeout, - u16 start_seq_num, u16 ba_policy, u16 tid, - u16 buf_size, bool tx, bool auto_seq) +static void __ieee80211_start_rx_ba_session(struct sta_info *sta, + u8 dialog_token, u16 timeout, + u16 start_seq_num, u16 ba_policy, + u16 tid, u16 buf_size, bool tx, + bool auto_seq) { mutex_lock(&sta->ampdu_mlme.mtx); ___ieee80211_start_rx_ba_session(sta, dialog_token, timeout, |