staging: rtl8723bs: hal: sdio_ops: fix braces {} are not necessary for single stateme...
authorHariprasad Kelam <hariprasad.kelam@gmail.com>
Tue, 11 Jun 2019 18:22:30 +0000 (23:52 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 13 Jun 2019 09:50:08 +0000 (11:50 +0200)
This patch fixes below issue reported by checkpatch

WARNING: braces {} are not necessary for single statement blocks

Signed-off-by: Hariprasad Kelam <hariprasad.kelam@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/sdio_ops.c

index ebd2ab8c238c2d645b572f6bc7979e8c9299b5de..22bbcb7793eea05e77622caeeace63b34e7e901f 100644 (file)
@@ -1045,13 +1045,11 @@ void sd_int_dpc(struct adapter *adapter)
                }
        }
 
-       if (hal->sdio_hisr & SDIO_HISR_TXBCNOK) {
+       if (hal->sdio_hisr & SDIO_HISR_TXBCNOK)
                DBG_8192C("%s: SDIO_HISR_TXBCNOK\n", __func__);
-       }
 
-       if (hal->sdio_hisr & SDIO_HISR_TXBCNERR) {
+       if (hal->sdio_hisr & SDIO_HISR_TXBCNERR)
                DBG_8192C("%s: SDIO_HISR_TXBCNERR\n", __func__);
-       }
 #ifndef CONFIG_C2H_PACKET_EN
        if (hal->sdio_hisr & SDIO_HISR_C2HCMD) {
                struct c2h_evt_hdr_88xx *c2h_evt;
@@ -1077,13 +1075,12 @@ void sd_int_dpc(struct adapter *adapter)
        }
 #endif
 
-       if (hal->sdio_hisr & SDIO_HISR_RXFOVW) {
+       if (hal->sdio_hisr & SDIO_HISR_RXFOVW)
                DBG_8192C("%s: Rx Overflow\n", __func__);
-       }
 
-       if (hal->sdio_hisr & SDIO_HISR_RXERR) {
+       if (hal->sdio_hisr & SDIO_HISR_RXERR)
                DBG_8192C("%s: Rx Error\n", __func__);
-       }
+
 
        if (hal->sdio_hisr & SDIO_HISR_RX_REQUEST) {
                struct recv_buf *recvbuf;
@@ -1143,9 +1140,8 @@ void sd_int_hdl(struct adapter *adapter)
 
                /*  clear HISR */
                v32 = hal->sdio_hisr & MASK_SDIO_HISR_CLEAR;
-               if (v32) {
+               if (v32)
                        SdioLocalCmd52Write4Byte(adapter, SDIO_REG_HISR, v32);
-               }
 
                sd_int_dpc(adapter);
        } else {