diff options
Diffstat (limited to 'sound/pci/via82xx_modem.c')
-rw-r--r-- | sound/pci/via82xx_modem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/via82xx_modem.c b/sound/pci/via82xx_modem.c index f7e8bbbe395..a386dd9f673 100644 --- a/sound/pci/via82xx_modem.c +++ b/sound/pci/via82xx_modem.c | |||
@@ -1129,7 +1129,7 @@ static int __devinit snd_via82xx_create(struct snd_card *card, | |||
1129 | } | 1129 | } |
1130 | chip->port = pci_resource_start(pci, 0); | 1130 | chip->port = pci_resource_start(pci, 0); |
1131 | if (request_irq(pci->irq, snd_via82xx_interrupt, IRQF_SHARED, | 1131 | if (request_irq(pci->irq, snd_via82xx_interrupt, IRQF_SHARED, |
1132 | card->driver, chip)) { | 1132 | KBUILD_MODNAME, chip)) { |
1133 | snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq); | 1133 | snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq); |
1134 | snd_via82xx_free(chip); | 1134 | snd_via82xx_free(chip); |
1135 | return -EBUSY; | 1135 | return -EBUSY; |
@@ -1224,7 +1224,7 @@ static void __devexit snd_via82xx_remove(struct pci_dev *pci) | |||
1224 | } | 1224 | } |
1225 | 1225 | ||
1226 | static struct pci_driver driver = { | 1226 | static struct pci_driver driver = { |
1227 | .name = "VIA 82xx Modem", | 1227 | .name = KBUILD_MODNAME, |
1228 | .id_table = snd_via82xx_modem_ids, | 1228 | .id_table = snd_via82xx_modem_ids, |
1229 | .probe = snd_via82xx_probe, | 1229 | .probe = snd_via82xx_probe, |
1230 | .remove = __devexit_p(snd_via82xx_remove), | 1230 | .remove = __devexit_p(snd_via82xx_remove), |