mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: r8188eu: core/rtw_recv.c: clean up nested if statements
Combine two nested if statements into a single one to fix indentation issue and improve readability, as suggested by checkpatch.pl Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> # Edimax N150 Signed-off-by: Chang Yu <marcus.yu.56@gmail.com> Link: https://lore.kernel.org/r/20220624144526.437322-1-marcus.yu.56@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f6c99d8624
commit
b78137d00a
1 changed files with 2 additions and 4 deletions
|
@ -166,10 +166,8 @@ int rtw_free_recvframe(struct recv_frame *precvframe, struct __queue *pfree_recv
|
|||
|
||||
list_add_tail(&precvframe->list, get_list_head(pfree_recv_queue));
|
||||
|
||||
if (padapter) {
|
||||
if (pfree_recv_queue == &precvpriv->free_recv_queue)
|
||||
precvpriv->free_recvframe_cnt++;
|
||||
}
|
||||
if (padapter && (pfree_recv_queue == &precvpriv->free_recv_queue))
|
||||
precvpriv->free_recvframe_cnt++;
|
||||
|
||||
spin_unlock_bh(&pfree_recv_queue->lock);
|
||||
|
||||
|
|
Loading…
Reference in a new issue