diff options
author | Shruti Kanetkar <Shruti@Freescale.com> | 2014-04-22 23:21:47 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-04-23 23:28:05 +0400 |
commit | 2ebb15820ef72b45846c1f5fcc5462f63aefe0b8 (patch) | |
tree | 9a80de6fdc2e07793786d82fa90b53188e33220d /drivers/net/phy/at803x.c | |
parent | 8101a5679bf5343904128bc38fa96c0a6b066e69 (diff) | |
download | linux-2ebb15820ef72b45846c1f5fcc5462f63aefe0b8.tar.xz |
net/phy: Remove return value for void function
This was caught when using a spatch (aka. coccinelle) script
written by Joe Perches.
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Shruti Kanetkar <Shruti@Freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/at803x.c')
-rw-r--r-- | drivers/net/phy/at803x.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/phy/at803x.c b/drivers/net/phy/at803x.c index b256083aa69e..6c622aedbae1 100644 --- a/drivers/net/phy/at803x.c +++ b/drivers/net/phy/at803x.c @@ -253,8 +253,7 @@ static int __init atheros_init(void) static void __exit atheros_exit(void) { - return phy_drivers_unregister(at803x_driver, - ARRAY_SIZE(at803x_driver)); + phy_drivers_unregister(at803x_driver, ARRAY_SIZE(at803x_driver)); } module_init(atheros_init); |