Skip to content
Snippets Groups Projects
Commit 057b61af authored by Gustavo Padovan's avatar Gustavo Padovan Committed by Jeff Garzik
Browse files

drivers/net: Remove 'return' of void function NS8390p_init()


We don't need this into a void function.

Signed-off-by: default avatarGustavo F. Padovan <gustavo@las.ic.unicamp.br>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 71557a37
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment