From 3661cdf16df8121be01d3a9d8fae8f420c918d2d Mon Sep 17 00:00:00 2001 From: Aybuke Ozdemir Date: Sun, 16 Mar 2014 07:08:46 +0200 Subject: [PATCH] staging: octeon: octeon-ethernet.h Fix Unnecessary space after function pointer name The patch fixes the following checkpatch.pl warnings: WARNING: Unnecessary space after function pointer name. Signed-off-by: Aybuke Ozdemir Signed-off-by: Greg Kroah-Hartman --- drivers/staging/octeon/octeon-ethernet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/octeon/octeon-ethernet.h b/drivers/staging/octeon/octeon-ethernet.h index 9360e22e0739..4cf3884070fa 100644 --- a/drivers/staging/octeon/octeon-ethernet.h +++ b/drivers/staging/octeon/octeon-ethernet.h @@ -58,7 +58,7 @@ struct octeon_ethernet { /* Last negotiated link state */ uint64_t link_info; /* Called periodically to check link status */ - void (*poll) (struct net_device *dev); + void (*poll)(struct net_device *dev); struct delayed_work port_periodic_work; struct work_struct port_work; /* may be unused. */ struct device_node *of_node; -- 2.34.1