Commit 96688ef6 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] 3c59x: 3c920 support

Patch from Urban Widmark <Urban.Widmark@enlight.net>

Adds support for the 3c920, which appears to be the same as a 3c905C.
parent 7dcb98cc
...@@ -460,6 +460,7 @@ enum vortex_chips { ...@@ -460,6 +460,7 @@ enum vortex_chips {
CH_3CCFEM656_1, CH_3CCFEM656_1,
CH_3C450, CH_3C450,
CH_3C920,
}; };
...@@ -551,6 +552,8 @@ static struct vortex_chip_info { ...@@ -551,6 +552,8 @@ static struct vortex_chip_info {
MAX_COLLISION_RESET|HAS_HWCKSM, 128, }, MAX_COLLISION_RESET|HAS_HWCKSM, 128, },
{"3c450 HomePNA Tornado", /* AKPM: from Don's 0.99Q */ {"3c450 HomePNA Tornado", /* AKPM: from Don's 0.99Q */
PCI_USES_IO|PCI_USES_MASTER, IS_TORNADO|HAS_NWAY|HAS_HWCKSM, 128, }, 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, },
{0,}, /* 0 terminated list. */ {0,}, /* 0 terminated list. */
}; };
...@@ -594,6 +597,7 @@ static struct pci_device_id vortex_pci_tbl[] __devinitdata = { ...@@ -594,6 +597,7 @@ static struct pci_device_id vortex_pci_tbl[] __devinitdata = {
{ 0x10B7, 0x6564, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3CCFEM656_1 }, { 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, 0x4500, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C450 },
{ 0x10B7, 0x9201, PCI_ANY_ID, PCI_ANY_ID, 0, 0, CH_3C920 },
{0,} /* 0 terminated list. */ {0,} /* 0 terminated list. */
}; };
MODULE_DEVICE_TABLE(pci, vortex_pci_tbl); MODULE_DEVICE_TABLE(pci, vortex_pci_tbl);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment