aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/trident
diff options
context:
space:
mode:
Diffstat (limited to 'sound/pci/trident')
-rw-r--r--sound/pci/trident/trident.c2
-rw-r--r--sound/pci/trident/trident_main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/trident/trident.c b/sound/pci/trident/trident.c
index 6d0581841d7..d8a128f6fc0 100644
--- a/sound/pci/trident/trident.c
+++ b/sound/pci/trident/trident.c
@@ -172,7 +172,7 @@ static void __devexit snd_trident_remove(struct pci_dev *pci)
172} 172}
173 173
174static struct pci_driver driver = { 174static struct pci_driver driver = {
175 .name = "Trident4DWaveAudio", 175 .name = KBUILD_MODNAME,
176 .id_table = snd_trident_ids, 176 .id_table = snd_trident_ids,
177 .probe = snd_trident_probe, 177 .probe = snd_trident_probe,
178 .remove = __devexit_p(snd_trident_remove), 178 .remove = __devexit_p(snd_trident_remove),
diff --git a/sound/pci/trident/trident_main.c b/sound/pci/trident/trident_main.c
index 2870a4fdc13..5bd57a7c52d 100644
--- a/sound/pci/trident/trident_main.c
+++ b/sound/pci/trident/trident_main.c
@@ -3598,7 +3598,7 @@ int __devinit snd_trident_create(struct snd_card *card,
3598 trident->port = pci_resource_start(pci, 0); 3598 trident->port = pci_resource_start(pci, 0);
3599 3599
3600 if (request_irq(pci->irq, snd_trident_interrupt, IRQF_SHARED, 3600 if (request_irq(pci->irq, snd_trident_interrupt, IRQF_SHARED,
3601 "Trident Audio", trident)) { 3601 KBUILD_MODNAME, trident)) {
3602 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq); 3602 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
3603 snd_trident_free(trident); 3603 snd_trident_free(trident);
3604 return -EBUSY; 3604 return -EBUSY;