staging: rtl8723bs: Fix style in definitions
authorJavier F. Arias <jarias.linux@gmail.com>
Thu, 10 Oct 2019 02:16:49 +0000 (21:16 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 10 Oct 2019 08:56:51 +0000 (10:56 +0200)
Fix the style in definitions where commented code was previously
removed for an improved code readability.

Signed-off-by: Javier F. Arias <jarias.linux@gmail.com>
Link: https://lore.kernel.org/r/fc488562c0ddf3fa8a59e86be9b33506496ccd0c.1570672544.git.jarias.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/sdio_ops.c

index 0bd32808c74b75d045a4cbb0749af752a20d8afd..5ecd1c873871791592d2ee4303594c7b7811b44a 100644 (file)
@@ -736,10 +736,9 @@ void InitInterrupt8723BSdio(struct adapter *adapter)
        struct hal_com_data *haldata;
 
        haldata = GET_HAL_DATA(adapter);
-       haldata->sdio_himr = (u32)(             \
-                                                               SDIO_HIMR_RX_REQUEST_MSK                        |
-                                                               SDIO_HIMR_AVAL_MSK                                      |
-                                                               0);
+       haldata->sdio_himr = (u32)(SDIO_HIMR_RX_REQUEST_MSK     |
+                                  SDIO_HIMR_AVAL_MSK           |
+                                  0);
 }
 
 /*  */
@@ -754,8 +753,7 @@ void InitSysInterrupt8723BSdio(struct adapter *adapter)
 
        haldata = GET_HAL_DATA(adapter);
 
-       haldata->SysIntrMask = (                \
-                                                       0);
+       haldata->SysIntrMask = (0);
 }
 
 /*  */