* [PATCH] mac80211: remove unused variables
@ 2014-05-20 20:22 Antonio Quartulli
2014-05-21 15:50 ` Johannes Berg
0 siblings, 1 reply; 2+ messages in thread
From: Antonio Quartulli @ 2014-05-20 20:22 UTC (permalink / raw)
To: Johannes Berg; +Cc: linux-wireless, Antonio Quartulli
From: Antonio Quartulli <antonio@open-mesh.com>
9dbd32e7dd9600b03c5a955980205446f3db0dfb accidentally
introduced two variables that are assigned but never used.
Remove them.
Signed-off-by: Antonio Quartulli <antonio@open-mesh.com>
---
net/mac80211/cfg.c | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 9e86dd5..d7513a5 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -473,8 +473,6 @@ static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
struct ieee80211_sub_if_data *sdata = sta->sdata;
struct ieee80211_local *local = sdata->local;
struct rate_control_ref *ref = local->rate_ctrl;
- struct ieee80211_supported_band *sband;
- enum ieee80211_band band;
struct timespec uptime;
u64 packets = 0;
u32 thr = 0;
@@ -593,14 +591,10 @@ static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo)
sinfo->sta_flags.set |= BIT(NL80211_STA_FLAG_TDLS_PEER);
/* check if the driver has a SW RC implementation */
- if (ref && ref->ops->get_expected_throughput) {
- band = ieee80211_get_sdata_band(sta->sdata);
- sband = sta->local->hw.wiphy->bands[band];
-
+ if (ref && ref->ops->get_expected_throughput)
thr = ref->ops->get_expected_throughput(sta->rate_ctrl_priv);
- } else {
+ else
thr = drv_get_expected_throughput(local, &sta->sta);
- }
if (thr != 0) {
sinfo->filled |= STATION_INFO_EXPECTED_THROUGHPUT;
--
1.8.5.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] mac80211: remove unused variables
2014-05-20 20:22 [PATCH] mac80211: remove unused variables Antonio Quartulli
@ 2014-05-21 15:50 ` Johannes Berg
0 siblings, 0 replies; 2+ messages in thread
From: Johannes Berg @ 2014-05-21 15:50 UTC (permalink / raw)
To: Antonio Quartulli; +Cc: linux-wireless, Antonio Quartulli
On Tue, 2014-05-20 at 22:22 +0200, Antonio Quartulli wrote:
> From: Antonio Quartulli <antonio@open-mesh.com>
>
> 9dbd32e7dd9600b03c5a955980205446f3db0dfb accidentally
What? such commit doesn't exist ;-)
I squashed this in (this morning actually, but forgot to send an email)
johannes
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-05-21 15:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-20 20:22 [PATCH] mac80211: remove unused variables Antonio Quartulli
2014-05-21 15:50 ` Johannes Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).