mirror of
https://github.com/torvalds/linux.git
synced 2024-12-11 05:33:09 +00:00
staging: rtl8192u: ieee80211: ieee80211_rx.c: Remove unnecessary braces.
Remove braces around single statement block. Issue found by checkpatch.pl WARNING: braces {} are not necessary for a single statement block Signed-off-by: Sanjana Sanikommu <sanjana99reddy99@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ac22353f80
commit
40a3483b19
@ -598,9 +598,8 @@ static void RxReorderIndicatePacket(struct ieee80211_device *ieee,
|
||||
return;
|
||||
|
||||
/* Rx Reorder initialize condition.*/
|
||||
if (pTS->rx_indicate_seq == 0xffff) {
|
||||
if (pTS->rx_indicate_seq == 0xffff)
|
||||
pTS->rx_indicate_seq = SeqNum;
|
||||
}
|
||||
|
||||
/* Drop out the packet which SeqNum is smaller than WinStart */
|
||||
if (SN_LESS(SeqNum, pTS->rx_indicate_seq)) {
|
||||
|
Loading…
Reference in New Issue
Block a user