Commit bd9c9e2c authored by Puranjay Mohan's avatar Puranjay Mohan Committed by Greg Kroah-Hartman
Browse files

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: default avatarPuranjay Mohan <puranjay12@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5706396f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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;