]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mac80211: sta_info: avoid tidstats variable shadowing
authorJohannes Berg <johannes.berg@intel.com>
Fri, 9 Nov 2018 10:13:15 +0000 (11:13 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 9 Nov 2018 10:13:15 +0000 (11:13 +0100)
We have a pointer called 'tidstats' that shadows a bool function
argument with the same name, but we actually only use it once so
just remove the pointer.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/sta_info.c

index fb8c2252ac0e2cf09bab5bec2700bbe545ab1c98..11b7ae691db01d98d5af381d0247cd597d894744 100644 (file)
@@ -2253,11 +2253,8 @@ void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo,
        }
 
        if (tidstats && !cfg80211_sinfo_alloc_tid_stats(sinfo, GFP_KERNEL)) {
-               for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++) {
-                       struct cfg80211_tid_stats *tidstats = &sinfo->pertid[i];
-
-                       sta_set_tidstats(sta, tidstats, i);
-               }
+               for (i = 0; i < IEEE80211_NUM_TIDS + 1; i++)
+                       sta_set_tidstats(sta, &sinfo->pertid[i], i);
        }
 
        if (ieee80211_vif_is_mesh(&sdata->vif)) {