On Wed, Jun 21, 2006 at 03:48:57AM -0700, Andrew Morton wrote: >... > Changes since 2.6.17-rc6-mm2: >... > +ni5010-netcard-cleanup.patch > > netdev cleanup >...
This patch fixes the following compile error with CONFIG_NI5010=y: <-- snip --> ... LD .tmp_vmlinux1 drivers/built-in.o:(.init.data+0x2b280): undefined reference to `ni5010_probe' make: *** [.tmp_vmlinux1] Error 1 <-- snip --> Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- linux-2.6.17-mm1-full/drivers/net/ni5010.c.old 2006-06-21 16:21:26.000000000 +0200 +++ linux-2.6.17-mm1-full/drivers/net/ni5010.c 2006-06-21 16:21:46.000000000 +0200 @@ -117,7 +117,7 @@ static int io; static int irq; -static struct net_device * __init ni5010_probe(int unit) +struct net_device * __init ni5010_probe(int unit) { struct net_device *dev = alloc_etherdev(sizeof(struct ni5010_local)); int *port; - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html