summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8723au
diff options
context:
space:
mode:
authorJanani Ravichandran <janani.rvchndrn@gmail.com>2016-02-18 17:56:53 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-20 15:04:11 -0800
commit382f00561cf322d63bd5f946f226ec630ee9866a (patch)
treefd80a0eda7729b279865489b78f71fb05c0a9953 /drivers/staging/rtl8723au
parentf0eba5167bb0010a0a83c0868acf593de762362a (diff)
downloadtalos-obmc-linux-382f00561cf322d63bd5f946f226ec630ee9866a.tar.gz
talos-obmc-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;
OpenPOWER on IntegriCloud