Commit 55229a56 authored by Chaehyun Lim's avatar Chaehyun Lim Committed by Greg Kroah-Hartman

staging: wilc1000: wilc_wfi_netdevice.c: remove braces for single statement block

Fix checkpatch warning found by checkpatch.pl
WARNING: braces {} are not necessary for single statement blocks
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e8b369ea
......@@ -931,10 +931,8 @@ int WILC_WFI_InitModule(void)
/* ret = host_int_init(&priv[0]->hWILCWFIDrv); */
/*copy handle to the other driver*/
/* priv[1]->hWILCWFIDrv = priv[0]->hWILCWFIDrv; */
if (ret) {
if (ret)
PRINT_ER("Error Init Driver\n");
}
out:
if (ret)
......
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