projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71557a3
)
drivers/net: Remove 'return' of void function NS8390p_init()
author
Gustavo F. Padovan
<gustavo@las.ic.unicamp.br>
Sat, 2 Aug 2008 18:55:11 +0000
(15:55 -0300)
committer
Jeff Garzik
<jgarzik@redhat.com>
Thu, 7 Aug 2008 06:21:02 +0000
(
02:21
-0400)
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>
drivers/net/8390p.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/net/8390p.c
b/drivers/net/8390p.c
index 71f19884c4b102e61360155fe9d03909557a07c6..fd46f6cd43113aaea52e651080a1293ea1b47730 100644
(file)
--- a/
drivers/net/8390p.c
+++ b/
drivers/net/8390p.c
@@
-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);