mirror of
https://github.com/torvalds/linux.git
synced 2024-12-13 22:53:20 +00:00
staging: rtl8192u: cleanup a switch statement
The white space was all wrong here. The case statements were indented too far. The if else blocks weren't indented at all. There was a break statement aligned with the else block and it confused my static checker because "were curly braces intended" so that the break statement was only on the else side? Also I removed some commented out code. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bc802a2742
commit
ab0fbdc2c2
@ -1903,20 +1903,17 @@ static void ieee80211_process_action(struct ieee80211_device *ieee,
|
||||
}
|
||||
tmp = *act;
|
||||
act ++;
|
||||
switch (tmp)
|
||||
{
|
||||
case ACT_CAT_BA:
|
||||
if (*act == ACT_ADDBAREQ)
|
||||
switch (tmp) {
|
||||
case ACT_CAT_BA:
|
||||
if (*act == ACT_ADDBAREQ)
|
||||
ieee80211_rx_ADDBAReq(ieee, skb);
|
||||
else if (*act == ACT_ADDBARSP)
|
||||
else if (*act == ACT_ADDBARSP)
|
||||
ieee80211_rx_ADDBARsp(ieee, skb);
|
||||
else if (*act == ACT_DELBA)
|
||||
else if (*act == ACT_DELBA)
|
||||
ieee80211_rx_DELBA(ieee, skb);
|
||||
break;
|
||||
default:
|
||||
// if (net_ratelimit())
|
||||
// IEEE80211_DEBUG(IEEE80211_DL_BA, "unknown action frame(%d)\n", tmp);
|
||||
break;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user