summaryrefslogtreecommitdiff
path: root/wctdm24xxp.c
diff options
context:
space:
mode:
authormattf <mattf@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-25 22:55:17 +0000
committermattf <mattf@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2007-01-25 22:55:17 +0000
commitda48e024fb3302bd66b419c2f1414b9e2c036fb4 (patch)
tree0679b04d19d745846e663c74ac665331fdce0293 /wctdm24xxp.c
parent30efa4035862775f8dbdd0a3fa669bfd589a5ea2 (diff)
Minor bug fix as well as minor cosmetic changes.
git-svn-id: http://svn.digium.com/svn/zaptel/branches/1.4@1975 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'wctdm24xxp.c')
-rw-r--r--wctdm24xxp.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/wctdm24xxp.c b/wctdm24xxp.c
index 33fdb95..18ab81f 100644
--- a/wctdm24xxp.c
+++ b/wctdm24xxp.c
@@ -417,8 +417,8 @@ struct wctdm_desc {
int ports;
};
-static struct wctdm_desc wctdm2400 = { "TDM2400P", 0, 24 };
-static struct wctdm_desc wctdm800 = { "TDM800P", 0, 8 };
+static struct wctdm_desc wctdm2400 = { "Wildcard TDM2400P", 0, 24 };
+static struct wctdm_desc wctdm800 = { "Wildcard TDM800P", 0, 8 };
static int acim2tiss[16] = { 0x0, 0x1, 0x4, 0x5, 0x7, 0x0, 0x0, 0x6, 0x0, 0x0, 0x0, 0x2, 0x0, 0x3 };
static struct wctdm *ifaces[WC_MAX_IFACES];
@@ -3008,7 +3008,7 @@ static int wctdm_hardware_init(struct wctdm *wc)
printk("(post) Reg fc is %08x\n", reg);
printk("Detected REG2: %08x\n", wctdm_getsdi(wc, 0x02));
#endif
- printk("%s: reg is %08x\n", wc->variety, wctdm_getctl(wc, 0x0088));
+ printk("wctdm24xxp: reg is %08x\n", wctdm_getctl(wc, 0x0088));
return 0;
}
@@ -3323,8 +3323,6 @@ static int __devinit wctdm_init_one(struct pci_dev *pdev, const struct pci_devic
int y;
static int initd_ifaces=0;
- d = &wctdm800;
-
if(initd_ifaces){
memset((void *)ifaces,0,(sizeof(struct wctdm *))*WC_MAX_IFACES);
initd_ifaces=1;
@@ -3356,7 +3354,7 @@ static int __devinit wctdm_init_one(struct pci_dev *pdev, const struct pci_devic
wc->dacssrc[y] = -1;
}
/* Keep track of whether we need to free the region */
- if (request_region(wc->iobase, 0xff, wc->variety))
+ if (request_region(wc->iobase, 0xff, "wctdm24xxp"))
wc->freeregion = 1;
/* Allocate enough memory for two zt chunks, receive and transmit. Each sample uses
@@ -3401,7 +3399,7 @@ static int __devinit wctdm_init_one(struct pci_dev *pdev, const struct pci_devic
pci_set_drvdata(pdev, wc);
if (request_irq(pdev->irq, wctdm_interrupt, SA_SHIRQ, wc->variety, wc)) {
- printk("%s: Unable to request IRQ %d\n", wc->variety, pdev->irq);
+ printk("wctdm24xxp: Unable to request IRQ %d\n", pdev->irq);
if (wc->freeregion)
release_region(wc->iobase, 0xff);
pci_free_consistent(pdev, PCI_WINDOW_SIZE, (void *)wc->writechunk, wc->writedma);
@@ -3577,7 +3575,7 @@ MODULE_PARM(vpmdtmfsupport, "i");
MODULE_PARM(dtmfthreshold, "i");
#endif
#endif
-MODULE_DESCRIPTION("Wildcard TDMXX00P Zaptel Driver");
+MODULE_DESCRIPTION("Wildcard TDM2400P/TDM800P Zaptel Driver");
MODULE_AUTHOR("Mark Spencer <markster@digium.com>");
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");