diff options
author | Johannes Berg <johannes.berg@intel.com> | 2012-01-20 07:52:36 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-01-27 14:56:55 -0500 |
commit | 8e7c4e4dc6e98a0d3ee4535c6b94a3ad63adad2a (patch) | |
tree | 589946341681ae98ff5d4c8bbc936da6820aa2c4 /net/mac80211/status.c | |
parent | ea086359a63bd0dd85c1d784d0425340649613fa (diff) |
mac80211: fix a few -Wshadow warnings
It seems that -Wshadow is no longer default in
sparse runs, but let's fix the warnings anyway.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/status.c')
-rw-r--r-- | net/mac80211/status.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/status.c b/net/mac80211/status.c index 30c265c98f73..d67f0b967f8a 100644 --- a/net/mac80211/status.c +++ b/net/mac80211/status.c | |||
@@ -350,7 +350,6 @@ void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb) | |||
350 | bool send_to_cooked; | 350 | bool send_to_cooked; |
351 | bool acked; | 351 | bool acked; |
352 | struct ieee80211_bar *bar; | 352 | struct ieee80211_bar *bar; |
353 | u16 tid; | ||
354 | int rtap_len; | 353 | int rtap_len; |
355 | 354 | ||
356 | for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) { | 355 | for (i = 0; i < IEEE80211_TX_MAX_RATES; i++) { |
@@ -412,7 +411,7 @@ void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb) | |||
412 | } | 411 | } |
413 | 412 | ||
414 | if (!acked && ieee80211_is_back_req(fc)) { | 413 | if (!acked && ieee80211_is_back_req(fc)) { |
415 | u16 control; | 414 | u16 tid, control; |
416 | 415 | ||
417 | /* | 416 | /* |
418 | * BAR failed, store the last SSN and retry sending | 417 | * BAR failed, store the last SSN and retry sending |
@@ -516,7 +515,8 @@ void ieee80211_tx_status(struct ieee80211_hw *hw, struct sk_buff *skb) | |||
516 | 515 | ||
517 | if (ieee80211_is_nullfunc(hdr->frame_control) || | 516 | if (ieee80211_is_nullfunc(hdr->frame_control) || |
518 | ieee80211_is_qos_nullfunc(hdr->frame_control)) { | 517 | ieee80211_is_qos_nullfunc(hdr->frame_control)) { |
519 | bool acked = info->flags & IEEE80211_TX_STAT_ACK; | 518 | acked = info->flags & IEEE80211_TX_STAT_ACK; |
519 | |||
520 | cfg80211_probe_status(skb->dev, hdr->addr1, | 520 | cfg80211_probe_status(skb->dev, hdr->addr1, |
521 | cookie, acked, GFP_ATOMIC); | 521 | cookie, acked, GFP_ATOMIC); |
522 | } else { | 522 | } else { |