From: Alan Cox The split patch didn't fully convert the ne2 driver so it failed to link. At some point this was fixed but the Makefile also got changed to incorrectly link with both 8390 and 8390p. Only 8390p is needed so remove 8390.o references Signed-off-by: Alan Cox Cc: Jeff Garzik Cc: Randy Dunlap Signed-off-by: Andrew Morton --- drivers/net/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/Makefile~8390-split-8390-support-into-a-pausing-and-a-non-pausing-driver-core-fix drivers/net/Makefile --- a/drivers/net/Makefile~8390-split-8390-support-into-a-pausing-and-a-non-pausing-driver-core-fix +++ a/drivers/net/Makefile @@ -108,7 +108,7 @@ obj-$(CONFIG_68360_ENET) += 68360enet.o obj-$(CONFIG_WD80x3) += wd.o 8390.o obj-$(CONFIG_EL2) += 3c503.o 8390p.o obj-$(CONFIG_NE2000) += ne.o 8390p.o -obj-$(CONFIG_NE2_MCA) += ne2.o 8390.o 8390p.o +obj-$(CONFIG_NE2_MCA) += ne2.o 8390p.o obj-$(CONFIG_HPLAN) += hp.o 8390p.o obj-$(CONFIG_HPLAN_PLUS) += hp-plus.o 8390p.o obj-$(CONFIG_ULTRA) += smc-ultra.o 8390.o _