From: Jurij Smakov tulip driver advertises support for non-working id http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=334104 It looks like tulip and dmfe have some identical PCI IDs in their lists of supported devices, which, I believe, should not normally happen. Attached patch removes the PCI IDs handled by dmfe driver from tulip. Signed-off-by: Jurij Smakov Signed-off-by: maximilian attems Signed-off-by: Andrew Morton --- drivers/net/tulip/tulip_core.c | 2 -- 1 files changed, 2 deletions(-) diff -puN drivers/net/tulip/tulip_core.c~tulip-remove-duplicate-pci-ids drivers/net/tulip/tulip_core.c --- devel/drivers/net/tulip/tulip_core.c~tulip-remove-duplicate-pci-ids 2006-01-11 20:06:50.000000000 -0800 +++ devel-akpm/drivers/net/tulip/tulip_core.c 2006-01-11 20:06:50.000000000 -0800 @@ -223,8 +223,6 @@ static struct pci_device_id tulip_pci_tb { 0x1259, 0xa120, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, { 0x11F6, 0x9881, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMPEX9881 }, { 0x8086, 0x0039, PCI_ANY_ID, PCI_ANY_ID, 0, 0, I21145 }, - { 0x1282, 0x9100, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X }, - { 0x1282, 0x9102, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DM910X }, { 0x1113, 0x1216, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, { 0x1113, 0x1217, PCI_ANY_ID, PCI_ANY_ID, 0, 0, MX98715 }, { 0x1113, 0x9511, PCI_ANY_ID, PCI_ANY_ID, 0, 0, COMET }, _