diff options
Diffstat (limited to 'sound/pci/au88x0/au88x0.c')
-rw-r--r-- | sound/pci/au88x0/au88x0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/au88x0/au88x0.c b/sound/pci/au88x0/au88x0.c index 7b72c88e449d..a38469986885 100644 --- a/sound/pci/au88x0/au88x0.c +++ b/sound/pci/au88x0/au88x0.c | |||
@@ -196,7 +196,7 @@ snd_vortex_create(struct snd_card *card, struct pci_dev *pci, vortex_t ** rchip) | |||
196 | } | 196 | } |
197 | 197 | ||
198 | if ((err = request_irq(pci->irq, vortex_interrupt, | 198 | if ((err = request_irq(pci->irq, vortex_interrupt, |
199 | IRQF_SHARED, CARD_NAME_SHORT, | 199 | IRQF_SHARED, KBUILD_MODNAME, |
200 | chip)) != 0) { | 200 | chip)) != 0) { |
201 | printk(KERN_ERR "cannot grab irq\n"); | 201 | printk(KERN_ERR "cannot grab irq\n"); |
202 | goto irq_out; | 202 | goto irq_out; |
@@ -375,7 +375,7 @@ static void __devexit snd_vortex_remove(struct pci_dev *pci) | |||
375 | 375 | ||
376 | // pci_driver definition | 376 | // pci_driver definition |
377 | static struct pci_driver driver = { | 377 | static struct pci_driver driver = { |
378 | .name = CARD_NAME_SHORT, | 378 | .name = KBUILD_MODNAME, |
379 | .id_table = snd_vortex_ids, | 379 | .id_table = snd_vortex_ids, |
380 | .probe = snd_vortex_probe, | 380 | .probe = snd_vortex_probe, |
381 | .remove = __devexit_p(snd_vortex_remove), | 381 | .remove = __devexit_p(snd_vortex_remove), |