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

staging: wilc1000: wilc_wfi_netdevice.c: move statement after declarations

Fix checkpatch warning found by checkpatch.pl
WARNING: Missing a blank line after declarations
Signed-off-by: default avatarChaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent df493fe8
...@@ -886,9 +886,10 @@ int WILC_WFI_InitModule(void) ...@@ -886,9 +886,10 @@ int WILC_WFI_InitModule(void)
int result, i, ret = -ENOMEM; int result, i, ret = -ENOMEM;
struct WILC_WFI_priv *priv[2], *netpriv; struct WILC_WFI_priv *priv[2], *netpriv;
struct wireless_dev *wdev; struct wireless_dev *wdev;
WILC_WFI_Interrupt = use_napi ? WILC_WFI_NapiInterrupt : WILC_WFI_RegularInterrupt;
char buf[IFNAMSIZ]; char buf[IFNAMSIZ];
WILC_WFI_Interrupt = use_napi ? WILC_WFI_NapiInterrupt : WILC_WFI_RegularInterrupt;
for (i = 0; i < 2; i++) { for (i = 0; i < 2; i++) {
/* Allocate the net devices */ /* Allocate the net devices */
......
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