diff options
author | Leo Kim <leo.kim@atmel.com> | 2015-11-06 02:19:52 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-11-16 04:02:47 (GMT) |
commit | 706671db2f4714c1f5df65861d8b69a61ddd2da3 (patch) | |
tree | 5f92779ba7bd6ffe92778df236fd2fa871007c0d | |
parent | 8e55639d066f4ef402ba88fca08ed1be70e1c4da (diff) | |
download | linux-706671db2f4714c1f5df65861d8b69a61ddd2da3.tar.xz |
staging: wilc1000: fixes space prohibited between function name and open parenthesis
This patch fixes the warning reported by checkpatch.pl
for space prohibited between function name and open parenthesis '('
Signed-off-by: Leo Kim <leo.kim@atmel.com>
Signed-off-by: Glen Lee <glen.lee@atmel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/wilc1000/wilc_wlan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wilc1000/wilc_wlan.c b/drivers/staging/wilc1000/wilc_wlan.c index 679ae7e..ba50605 100644 --- a/drivers/staging/wilc1000/wilc_wlan.c +++ b/drivers/staging/wilc1000/wilc_wlan.c @@ -1678,7 +1678,7 @@ int wilc_wlan_init(struct net_device *dev, wilc_wlan_inp_t *inp) goto _fail_; } -#if defined (MEMORY_STATIC) +#if defined(MEMORY_STATIC) if (!g_wlan.rx_buffer) g_wlan.rx_buffer = kmalloc(LINUX_RX_SIZE, GFP_KERNEL); PRINT_D(TX_DBG, "g_wlan.rx_buffer =%p\n", g_wlan.rx_buffer); |