From: Taken from http://bugzilla.kernel.org/show_bug.cgi?id=7239 Addresses http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=388870 Kernel can't finf driver for Corega Gigabit Network card. This card have RTL-8169 chip and r8169.ko works correctly with this change. Cc: Francois Romieu Cc: Jeff Garzik Signed-off-by: Andrew Morton --- drivers/net/r8169.c | 1 + 1 file changed, 1 insertion(+) diff -puN drivers/net/r8169.c~r8169-driver-corega-support-patch drivers/net/r8169.c --- a/drivers/net/r8169.c~r8169-driver-corega-support-patch +++ a/drivers/net/r8169.c @@ -215,6 +215,7 @@ static struct pci_device_id rtl8169_pci_ { PCI_DEVICE(PCI_VENDOR_ID_REALTEK, 0x8169), 0, 0, RTL_CFG_0 }, { PCI_DEVICE(PCI_VENDOR_ID_DLINK, 0x4300), 0, 0, RTL_CFG_0 }, { PCI_DEVICE(0x16ec, 0x0116), 0, 0, RTL_CFG_0 }, + { PCI_DEVICE(0x1259, 0xc107), 0, 0, RTL_CFG_0 }, { PCI_VENDOR_ID_LINKSYS, 0x1032, PCI_ANY_ID, 0x0024, 0, 0, RTL_CFG_0 }, {0,}, _