Skip to content

Commit

Permalink
drivers/net: Remove 'return' of void function NS8390p_init()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Gustavo F. Padovan authored and Jeff Garzik committed Aug 7, 2008
1 parent 71557a3 commit 057b61a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/8390p.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct net_device *__alloc_eip_netdev(int size)

void NS8390p_init(struct net_device *dev, int startp)
{
return __NS8390_init(dev, startp);
__NS8390_init(dev, startp);
}

EXPORT_SYMBOL(eip_open);
Expand Down

0 comments on commit 057b61a

Please sign in to comment.