mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-12 17:26:47 -04:00
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:
committed by
Greg Kroah-Hartman
parent
5706396f47
commit
bd9c9e2c6d
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user