diff options
Diffstat (limited to 'sound/pci/sonicvibes.c')
-rw-r--r-- | sound/pci/sonicvibes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/sonicvibes.c b/sound/pci/sonicvibes.c index 337b9facadf..2571a67b389 100644 --- a/sound/pci/sonicvibes.c +++ b/sound/pci/sonicvibes.c | |||
@@ -1294,7 +1294,7 @@ static int __devinit snd_sonicvibes_create(struct snd_card *card, | |||
1294 | sonic->game_port = pci_resource_start(pci, 4); | 1294 | sonic->game_port = pci_resource_start(pci, 4); |
1295 | 1295 | ||
1296 | if (request_irq(pci->irq, snd_sonicvibes_interrupt, IRQF_SHARED, | 1296 | if (request_irq(pci->irq, snd_sonicvibes_interrupt, IRQF_SHARED, |
1297 | "S3 SonicVibes", sonic)) { | 1297 | KBUILD_MODNAME, sonic)) { |
1298 | snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq); | 1298 | snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq); |
1299 | snd_sonicvibes_free(sonic); | 1299 | snd_sonicvibes_free(sonic); |
1300 | return -EBUSY; | 1300 | return -EBUSY; |
@@ -1530,7 +1530,7 @@ static void __devexit snd_sonic_remove(struct pci_dev *pci) | |||
1530 | } | 1530 | } |
1531 | 1531 | ||
1532 | static struct pci_driver driver = { | 1532 | static struct pci_driver driver = { |
1533 | .name = "S3 SonicVibes", | 1533 | .name = KBUILD_MODNAME, |
1534 | .id_table = snd_sonic_ids, | 1534 | .id_table = snd_sonic_ids, |
1535 | .probe = snd_sonic_probe, | 1535 | .probe = snd_sonic_probe, |
1536 | .remove = __devexit_p(snd_sonic_remove), | 1536 | .remove = __devexit_p(snd_sonic_remove), |