From patchwork Mon Sep 22 21:10:24 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [for,2.6.27?,09/10] drivers/net/hp-plus.c: fix build error Date: Mon, 22 Sep 2008 11:10:24 -0000 From: Andrew Morton X-Patchwork-Id: 945 Message-Id: <200809222110.m8MLAOQQ029900@imap1.linux-foundation.org> To: jeff@garzik.org Cc: netdev@vger.kernel.org, akpm@linux-foundation.org, randy.dunlap@oracle.com From: Randy Dunlap 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 Cc: Jeff Garzik Signed-off-by: Andrew Morton --- 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);