All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: mac80211: remove unused local variable
@ 2021-05-06  4:17 Saurav Girepunje
  0 siblings, 0 replies; only message in thread
From: Saurav Girepunje @ 2021-05-06  4:17 UTC (permalink / raw)
  To: johannes, davem, kuba, linux-wireless, netdev, linux-kernel
  Cc: saurav.girepunje

In ieee80211_process_addba_request() first argument is never
used.

Signed-off-by: Saurav Girepunje <saurav.girepunje@gmail.com>
---
 net/mac80211/agg-rx.c      | 3 +--
 net/mac80211/ieee80211_i.h | 3 +--
 net/mac80211/iface.c       | 4 ++--
 3 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c
index cce28e3b2232..3075570e7968 100644
--- a/net/mac80211/agg-rx.c
+++ b/net/mac80211/agg-rx.c
@@ -471,8 +471,7 @@ static void __ieee80211_start_rx_ba_session(struct sta_info *sta,
 	mutex_unlock(&sta->ampdu_mlme.mtx);
 }

-void ieee80211_process_addba_request(struct ieee80211_local *local,
-				     struct sta_info *sta,
+void ieee80211_process_addba_request(struct sta_info *sta,
 				     struct ieee80211_mgmt *mgmt,
 				     size_t len)
 {
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
index 8fcbaa1eedf3..9e3e5aaddaf6 100644
--- a/net/mac80211/ieee80211_i.h
+++ b/net/mac80211/ieee80211_i.h
@@ -1859,8 +1859,7 @@ void ieee80211_process_addba_resp(struct ieee80211_local *local,
 				  struct sta_info *sta,
 				  struct ieee80211_mgmt *mgmt,
 				  size_t len);
-void ieee80211_process_addba_request(struct ieee80211_local *local,
-				     struct sta_info *sta,
+void ieee80211_process_addba_request(struct sta_info *sta,
 				     struct ieee80211_mgmt *mgmt,
 				     size_t len);

diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c
index 7032a2b59249..4fe599bf9f9c 100644
--- a/net/mac80211/iface.c
+++ b/net/mac80211/iface.c
@@ -1351,8 +1351,8 @@ static void ieee80211_iface_work(struct work_struct *work)
 			if (sta) {
 				switch (mgmt->u.action.u.addba_req.action_code) {
 				case WLAN_ACTION_ADDBA_REQ:
-					ieee80211_process_addba_request(
-							local, sta, mgmt, len);
+					ieee80211_process_addba_request(sta,
+									mgmt, len);
 					break;
 				case WLAN_ACTION_ADDBA_RESP:
 					ieee80211_process_addba_resp(local, sta,
--
2.25.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-05-06  4:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-06  4:17 [PATCH] net: mac80211: remove unused local variable Saurav Girepunje

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.