From 7b58e79b5fbffc35e25d3eecec7f748d33b66a29 Mon Sep 17 00:00:00 2001 From: Aybuke Ozdemir Date: Sat, 27 Sep 2014 16:47:48 +0300 Subject: [PATCH] staging: rtl8723au: hal: Removed unnecessary braces. This patch fixes "braces {} are not necessary for single statement blocks" checkpatch.pl warning in hal_com.c Signed-off-by: Aybuke Ozdemir Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8723au/hal/hal_com.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/rtl8723au/hal/hal_com.c b/drivers/staging/rtl8723au/hal/hal_com.c index ae037d27d62e..bf919f6e4128 100644 --- a/drivers/staging/rtl8723au/hal/hal_com.c +++ b/drivers/staging/rtl8723au/hal/hal_com.c @@ -742,9 +742,8 @@ void rtl8723a_fifo_cleanup(struct rtw_adapter *padapter) if (!v32) break; } while (trycnt--); - if (trycnt == 0) { + if (trycnt == 0) DBG_8723A("Stop RX DMA failed......\n"); - } /* RQPN Load 0 */ rtl8723au_write16(padapter, REG_RQPN_NPQ, 0); -- 2.34.1