mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
Add IDs for 3C905B-TX Fast Etherlink XL PCI
We found this old card which was not supported, and physically looks similar to the other 3C905B we have (9055). After adding the IDs it seems to work fine (MII report, dhcp, scp, ...) Acked-by: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
cf39c4c572
commit
b4adbb4ddf
1 changed files with 4 additions and 0 deletions
|
@ -235,6 +235,7 @@ enum vortex_chips {
|
|||
CH_3C900B_FL,
|
||||
CH_3C905_1,
|
||||
CH_3C905_2,
|
||||
CH_3C905B_TX,
|
||||
CH_3C905B_1,
|
||||
|
||||
CH_3C905B_2,
|
||||
|
@ -307,6 +308,8 @@ static struct vortex_chip_info {
|
|||
PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_RESET, 64, },
|
||||
{"3c905 Boomerang 100baseT4",
|
||||
PCI_USES_MASTER, IS_BOOMERANG|HAS_MII|EEPROM_RESET, 64, },
|
||||
{"3C905B-TX Fast Etherlink XL PCI",
|
||||
PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM|EXTRA_PREAMBLE, 128, },
|
||||
{"3c905B Cyclone 100baseTx",
|
||||
PCI_USES_MASTER, IS_CYCLONE|HAS_NWAY|HAS_HWCKSM|EXTRA_PREAMBLE, 128, },
|
||||
|
||||
|
@ -389,6 +392,7 @@ static struct pci_device_id vortex_pci_tbl[] = {
|
|||
{ 0x10B7, 0x900A, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C900B_FL },
|
||||
{ 0x10B7, 0x9050, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905_1 },
|
||||
{ 0x10B7, 0x9051, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905_2 },
|
||||
{ 0x10B7, 0x9054, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_TX },
|
||||
{ 0x10B7, 0x9055, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_1 },
|
||||
|
||||
{ 0x10B7, 0x9058, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C905B_2 },
|
||||
|
|
Loading…
Reference in a new issue