diff options
author | Aybuke Ozdemir <[email protected]> | 2014-09-27 16:47:48 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2014-09-28 23:11:26 -0400 |
commit | 7b58e79b5fbffc35e25d3eecec7f748d33b66a29 (patch) | |
tree | 3237a8e544e6d7b09d724df63dc0c027c83e2591 | |
parent | 57e680eb090061a23119245f4878f413da77021a (diff) |
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 <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/rtl8723au/hal/hal_com.c | 3 |
1 files changed, 1 insertions, 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); |