aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/hp-plus.c
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2009-02-26 21:02:19 -0800
committerDavid S. Miller <davem@davemloft.net>2009-02-26 21:02:19 -0800
commit9b58027bc23a73a036877f28422dad7a0a199f95 (patch)
tree635003d907e54a51e1cf94ee99317838d411f9ef /drivers/net/hp-plus.c
parentipv6: don't use tw net when accounting for recycled tw (diff)
downloadlinux-dev-9b58027bc23a73a036877f28422dad7a0a199f95.tar.xz
linux-dev-9b58027bc23a73a036877f28422dad7a0a199f95.zip
net: fix hp-plus build error
hp-plus needs to call __alloc_eip_netdev() instead of __alloc_ei_netdev() since it is linked with 8390p.o. Fixes this build error: ERROR: "__alloc_ei_netdev" [drivers/net/hp-plus.ko] undefined! Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/hp-plus.c')
-rw-r--r--drivers/net/hp-plus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/hp-plus.c b/drivers/net/hp-plus.c
index 5e070f446635..0486cbe01adb 100644
--- a/drivers/net/hp-plus.c
+++ b/drivers/net/hp-plus.c
@@ -467,7 +467,7 @@ init_module(void)
if (this_dev != 0) break; /* only autoprobe 1st one */
printk(KERN_NOTICE "hp-plus.c: Presently autoprobing (not recommended) for a single card.\n");
}
- dev = alloc_ei_netdev();
+ dev = alloc_eip_netdev();
if (!dev)
break;
dev->irq = irq[this_dev];