diff options
author | Gustavo F. Padovan <gustavo@las.ic.unicamp.br> | 2008-08-02 14:55:11 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2008-08-07 02:21:02 -0400 |
commit | 057b61afca098d3ad3d9e8d15914bc9f9315e425 (patch) | |
tree | ed7051851a2413465eca8b220189170cee72c7cf /drivers/net | |
parent | 71557a37adb5df17631c493b3b7d912938c720b2 (diff) |
drivers/net: Remove 'return' of void function NS8390p_init()
We don't need this into a void function.
Signed-off-by: Gustavo F. Padovan <gustavo@las.ic.unicamp.br>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/8390p.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/8390p.c b/drivers/net/8390p.c index 71f19884c4b1..fd46f6cd4311 100644 --- a/drivers/net/8390p.c +++ b/drivers/net/8390p.c | |||
@@ -39,7 +39,7 @@ struct net_device *__alloc_eip_netdev(int size) | |||
39 | 39 | ||
40 | void NS8390p_init(struct net_device *dev, int startp) | 40 | void NS8390p_init(struct net_device *dev, int startp) |
41 | { | 41 | { |
42 | return __NS8390_init(dev, startp); | 42 | __NS8390_init(dev, startp); |
43 | } | 43 | } |
44 | 44 | ||
45 | EXPORT_SYMBOL(eip_open); | 45 | EXPORT_SYMBOL(eip_open); |