summaryrefslogtreecommitdiff
path: root/wct4xxp.c
diff options
context:
space:
mode:
authormarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-05-10 05:14:26 +0000
committermarkster <markster@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2005-05-10 05:14:26 +0000
commit0afdce07bf03c4ef19cd6754a7e6d8e2785e5e03 (patch)
tree5bd35872e2fdfb206bfdb14ae7e6c7855350de84 /wct4xxp.c
parent843057361949da7fa48bb6dd77b0d277b5ead98b (diff)
Update to new PCI ID's for Digium (yay!)
git-svn-id: http://svn.digium.com/svn/zaptel/trunk@640 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wct4xxp.c')
-rwxr-xr-xwct4xxp.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/wct4xxp.c b/wct4xxp.c
index bbd239b..f158f9a 100755
--- a/wct4xxp.c
+++ b/wct4xxp.c
@@ -108,7 +108,8 @@ struct devtype {
};
static struct devtype wct4xxp = { "Wildcard TE410P/TE405P (1st Gen)", 0 };
-static struct devtype wct4xxp2 = { "Wildcard TE410P/TE405P (2nd Gen)", FLAG_2NDGEN };
+static struct devtype wct410p2 = { "Wildcard TE410P (2nd Gen)", FLAG_2NDGEN };
+static struct devtype wct405p2 = { "Wildcard TE405P (2nd Gen)", FLAG_2NDGEN };
static int inirq = 0;
@@ -2435,7 +2436,8 @@ static void __devexit t4_remove_one(struct pci_dev *pdev)
static struct pci_device_id t4_pci_tbl[] __devinitdata =
{
{ 0x10ee, 0x0314, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long)&wct4xxp },
- { 0x10ee, 0x0271, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long)&wct4xxp2 },
+ { 0xd161, 0x0410, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long)&wct410p2 },
+ { 0xd161, 0x0405, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long)&wct405p2 },
{ 0, }
};