aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/pcxhr/pcxhr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/pcxhr/pcxhr.c')
-rw-r--r--sound/pci/pcxhr/pcxhr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/pcxhr/pcxhr.c b/sound/pci/pcxhr/pcxhr.c
index 95cfde27d25c..046578d26f98 100644
--- a/sound/pci/pcxhr/pcxhr.c
+++ b/sound/pci/pcxhr/pcxhr.c
@@ -1501,7 +1501,7 @@ static int __devinit pcxhr_probe(struct pci_dev *pci,
1501 mgr->irq = -1; 1501 mgr->irq = -1;
1502 1502
1503 if (request_irq(pci->irq, pcxhr_interrupt, IRQF_SHARED, 1503 if (request_irq(pci->irq, pcxhr_interrupt, IRQF_SHARED,
1504 card_name, mgr)) { 1504 KBUILD_MODNAME, mgr)) {
1505 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq); 1505 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
1506 pcxhr_free(mgr); 1506 pcxhr_free(mgr);
1507 return -EBUSY; 1507 return -EBUSY;
@@ -1608,7 +1608,7 @@ static void __devexit pcxhr_remove(struct pci_dev *pci)
1608} 1608}
1609 1609
1610static struct pci_driver driver = { 1610static struct pci_driver driver = {
1611 .name = "Digigram pcxhr", 1611 .name = KBUILD_MODNAME,
1612 .id_table = pcxhr_ids, 1612 .id_table = pcxhr_ids,
1613 .probe = pcxhr_probe, 1613 .probe = pcxhr_probe,
1614 .remove = __devexit_p(pcxhr_remove), 1614 .remove = __devexit_p(pcxhr_remove),