[patch for 2.6.27? 09/10] drivers/net/hp-plus.c: fix build error
From: akpm@linux-foundation.org
Date: 2008-09-22 21:14:42
From: akpm@linux-foundation.org
Date: 2008-09-22 21:14:42
From: Randy Dunlap <redacted> Fix hp-plus build error (yet again; will it ever end?): hp-plus.c:(.init.text+0xa2cd): undefined reference to `NS8390p_init' Signed-off-by: Randy Dunlap <redacted> Cc: Jeff Garzik <redacted> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> --- drivers/net/hp-plus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/hp-plus.c~drivers-net-hp-plusc-fix-build-error drivers/net/hp-plus.c
--- a/drivers/net/hp-plus.c~drivers-net-hp-plusc-fix-build-error
+++ a/drivers/net/hp-plus.c@@ -262,7 +262,7 @@ static int __init hpp_probe1(struct net_ } outw(Perf_Page, ioaddr + HP_PAGING); - NS8390p_init(dev, 0); + NS8390_init(dev, 0); /* Leave the 8390 and HP chip reset. */ outw(inw(ioaddr + HPP_OPTION) & ~EnableIRQ, ioaddr + HPP_OPTION);
_