Staging: rtl8723bs: os_dep: Remove braces from single if statement

Remove braces from single if statement to solve style issue found using
checkpatch,pl

Signed-off-by: Puranjay Mohan <puranjay12@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Puranjay Mohan 2019-05-07 21:51:26 +05:30 committed by Greg Kroah-Hartman
parent 5706396f47
commit bd9c9e2c6d

View File

@ -489,9 +489,8 @@ static int rtw_drv_init(
/* dev_alloc_name && register_netdev */
status = rtw_drv_register_netdev(if1);
if (status != _SUCCESS) {
if (status != _SUCCESS)
goto free_if2;
}
if (sdio_alloc_irq(dvobj) != _SUCCESS)
goto free_if2;