Commit ac478ce7 authored by Javier F. Arias's avatar Javier F. Arias Committed by Greg Kroah-Hartman

staging: rtl8723bs: Fix style in definitions

Fix the style in definitions where commented code was previously
removed for an improved code readability.
Signed-off-by: default avatarJavier F. Arias <jarias.linux@gmail.com>
Link: https://lore.kernel.org/r/fc488562c0ddf3fa8a59e86be9b33506496ccd0c.1570672544.git.jarias.linux@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 042e9a68
...@@ -736,10 +736,9 @@ void InitInterrupt8723BSdio(struct adapter *adapter) ...@@ -736,10 +736,9 @@ void InitInterrupt8723BSdio(struct adapter *adapter)
struct hal_com_data *haldata; struct hal_com_data *haldata;
haldata = GET_HAL_DATA(adapter); haldata = GET_HAL_DATA(adapter);
haldata->sdio_himr = (u32)( \ haldata->sdio_himr = (u32)(SDIO_HIMR_RX_REQUEST_MSK |
SDIO_HIMR_RX_REQUEST_MSK | SDIO_HIMR_AVAL_MSK |
SDIO_HIMR_AVAL_MSK | 0);
0);
} }
/* */ /* */
...@@ -754,8 +753,7 @@ void InitSysInterrupt8723BSdio(struct adapter *adapter) ...@@ -754,8 +753,7 @@ void InitSysInterrupt8723BSdio(struct adapter *adapter)
haldata = GET_HAL_DATA(adapter); haldata = GET_HAL_DATA(adapter);
haldata->SysIntrMask = ( \ haldata->SysIntrMask = (0);
0);
} }
/* */ /* */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment