diff options
author | Aybuke Ozdemir <aybuke.147@gmail.com> | 2014-03-16 07:08:46 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-03-18 10:32:19 -0700 |
commit | 3661cdf16df8121be01d3a9d8fae8f420c918d2d (patch) | |
tree | 4b4fc6afb2a74b9bee6b11c9fdc307eea2975a2c | |
parent | 9777ee83da5a0addc817eb468ead5180b2a7d531 (diff) | |
download | op-kernel-dev-3661cdf16df8121be01d3a9d8fae8f420c918d2d.zip op-kernel-dev-3661cdf16df8121be01d3a9d8fae8f420c918d2d.tar.gz |
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 <aybuke.147@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/octeon/octeon-ethernet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/octeon/octeon-ethernet.h b/drivers/staging/octeon/octeon-ethernet.h index 9360e22..4cf3884 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; |