mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 20:58:14 -04:00
staging: wilc1000: wilc_wfi_netdevice.c: remove prohibited space
Fix checkpatch warning found by checkpatch.pl
WARNING: space prohibited between function name and open parenthesis '('
Signed-off-by: Chaehyun Lim <chaehyun.lim@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a241a78952
commit
e8b369ea2b
@@ -71,7 +71,7 @@ void WILC_WFI_SetupPool(struct net_device *dev)
|
||||
|
||||
priv->ppool = NULL;
|
||||
for (i = 0; i < pool_size; i++) {
|
||||
pkt = kmalloc (sizeof (struct WILC_WFI_packet), GFP_KERNEL);
|
||||
pkt = kmalloc(sizeof(struct WILC_WFI_packet), GFP_KERNEL);
|
||||
if (pkt == NULL) {
|
||||
PRINT_D(RX_DBG, "Ran out of memory allocating packet pool\n");
|
||||
return;
|
||||
@@ -99,7 +99,7 @@ void WILC_WFI_TearDownPool(struct net_device *dev)
|
||||
|
||||
while ((pkt = priv->ppool)) {
|
||||
priv->ppool = pkt->next;
|
||||
kfree (pkt);
|
||||
kfree(pkt);
|
||||
/* FIXME - in-flight packets ? */
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user