summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8712
diff options
context:
space:
mode:
authorSebastian Arriola <sebdeveloper6952@gmail.com>2020-06-15 09:51:31 -0600
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-06-16 21:26:18 +0200
commit98fe05e21a6e0ca242e974650ed58b64813cb2dc (patch)
treea53c87dc87284eed3f55cdc4d411c91faec0626a /drivers/staging/rtl8712
parent3ee97e220648257e8a89c98c2a5cd5f989956168 (diff)
downloadlinux-98fe05e21a6e0ca242e974650ed58b64813cb2dc.tar.bz2
staging: rtl8712: Remove unnecesary else after return statement.
This patch fixes the checkpatch.pl warning: WARNING: else is not generally useful after a break or return 490: FILE: drivers/staging/rtl8712/rtl8712_recv.c:490: return false; else Signed-off-by: Sebastian Arriola <sebdeveloper6952@gmail.com> Link: https://lore.kernel.org/r/20200615155131.GA4563@sevic69 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8712')
-rw-r--r--drivers/staging/rtl8712/rtl8712_recv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/rtl8712/rtl8712_recv.c b/drivers/staging/rtl8712/rtl8712_recv.c
index fe6694f4d5e4..0bb49bcb9f1a 100644
--- a/drivers/staging/rtl8712/rtl8712_recv.c
+++ b/drivers/staging/rtl8712/rtl8712_recv.c
@@ -482,8 +482,7 @@ static int enqueue_reorder_recvframe(struct recv_reorder_ctrl *preorder_ctrl,
plist = plist->next;
else if (SN_EQUAL(pnextattrib->seq_num, pattrib->seq_num))
return false;
- else
- break;
+ break;
}
list_del_init(&(prframe->u.hdr.list));
list_add_tail(&(prframe->u.hdr.list), plist);