summaryrefslogtreecommitdiff
path: root/wctc4xxp
diff options
context:
space:
mode:
authorjsloan <jsloan@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-06-12 13:34:42 +0000
committerjsloan <jsloan@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-06-12 13:34:42 +0000
commit6f5cd14a693489c64f152210a35fecc39a418171 (patch)
treed3a0b93f8e33bb7899b2ef85f02057e711d075b0 /wctc4xxp
parentb187ad70b5827db881db7b7dfe0a4095331fe578 (diff)
Added new PCI device ID
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.2@2642 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wctc4xxp')
-rw-r--r--wctc4xxp/base.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/wctc4xxp/base.c b/wctc4xxp/base.c
index 6ff049f..772a39e 100644
--- a/wctc4xxp/base.c
+++ b/wctc4xxp/base.c
@@ -360,7 +360,8 @@ struct wcdte_desc {
int flags;
};
-static struct wcdte_desc wcdte = { "Wildcard TC400P+TC400M", 0 };
+static struct wcdte_desc wctc400p = { "Wildcard TC400P+TC400M", 0 };
+static struct wcdte_desc wctce400 = { "Wildcard TCE400+TC400M", 0 };
static struct wcdte *ifaces[WC_MAX_IFACES];
@@ -1819,7 +1820,8 @@ static void __devexit wcdte_remove_one(struct pci_dev *pdev)
static struct pci_device_id wcdte_pci_tbl[] = {
#ifndef USE_TEST_HW
- { 0xd161, 0x3400, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long) &wcdte }, /* Digium board */
+ { 0xd161, 0x3400, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long) &wctc400p }, /* Digium board */
+ { 0xd161, 0x8004, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long) &wctce400 }, /* Digium board */
#else
{ 0x1317, 0x0985, PCI_ANY_ID, PCI_ANY_ID, 0, 0, (unsigned long) &wcdte }, /* reference board */
#endif