summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8723au
diff options
context:
space:
mode:
authorJanani Ravichandran2016-02-18 23:56:53 +0100
committerGreg Kroah-Hartman2016-02-21 00:04:11 +0100
commit382f00561cf322d63bd5f946f226ec630ee9866a (patch)
treefd80a0eda7729b279865489b78f71fb05c0a9953 /drivers/staging/rtl8723au
parentstaging: rtl8723au: whitespace and blank line cleaning (diff)
downloadkernel-qcow2-linux-382f00561cf322d63bd5f946f226ec630ee9866a.tar.gz
kernel-qcow2-linux-382f00561cf322d63bd5f946f226ec630ee9866a.tar.xz
kernel-qcow2-linux-382f00561cf322d63bd5f946f226ec630ee9866a.zip
staging: rtl8723au: Remove unnecessary else following return
Remove unnecessary else when there is a return statement in the corresponding if block. Coccinelle patch used: @rule1@ expression e1; @@ if (e1) { ... return ...; } - else{ ... - } @rule2@ expression e2; statement s1; @@ if(e2) { ... return ...; } - else s1 Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723au')
-rw-r--r--drivers/staging/rtl8723au/hal/hal_com.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723au/hal/hal_com.c b/drivers/staging/rtl8723au/hal/hal_com.c
index 530db57e8842..9d7b11b63957 100644
--- a/drivers/staging/rtl8723au/hal/hal_com.c
+++ b/drivers/staging/rtl8723au/hal/hal_com.c
@@ -328,7 +328,7 @@ int c2h_evt_read23a(struct rtw_adapter *adapter, u8 *buf)
if (trigger == C2H_EVT_HOST_CLOSE)
goto exit; /* Not ready */
- else if (trigger != C2H_EVT_FW_CLOSE)
+ if (trigger != C2H_EVT_FW_CLOSE)
goto clear_evt; /* Not a valid value */
c2h_evt = (struct c2h_evt_hdr *)buf;