From: "J.A. Magallon" Adds support for a couple of 3c980 variants which are in pci.ids, but not in the driver. drivers/net/3c59x.c | 9 +++++++++ 1 files changed, 9 insertions(+) diff -puN drivers/net/3c59x.c~3c59x-980-support drivers/net/3c59x.c --- 25/drivers/net/3c59x.c~3c59x-980-support 2003-04-02 22:51:21.000000000 -0800 +++ 25-akpm/drivers/net/3c59x.c 2003-04-02 22:51:21.000000000 -0800 @@ -464,6 +464,8 @@ enum vortex_chips { CH_3CCFEM656_1, CH_3C450, CH_3C920, + CH_3C982A, + CH_3C982B, }; @@ -557,6 +559,11 @@ static struct vortex_chip_info { PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, }, {"3c920 Tornado", PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, }, + {"3c982 Hydra Dual Port A", + PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_HWCKSM|HAS_NWAY, 128, }, + {"3c982 Hydra Dual Port B", + PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_HWCKSM|HAS_NWAY, 128, }, + {0,}, /* 0 terminated list. */ }; @@ -601,6 +608,8 @@ static struct pci_device_id vortex_pci_t { 0x10B7, 0x6564, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFEM656_1 }, { 0x10B7, 0x4500, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C450 }, { 0x10B7, 0x9201, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C920 }, + { 0x10B7, 0x1201, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C982A }, + { 0x10B7, 0x1202, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C982B }, {0,} /* 0 terminated list. */ }; MODULE_DEVICE_TABLE(pci, vortex_pci_tbl); _