diff options
Diffstat (limited to 'sound/pci/riptide/riptide.c')
-rw-r--r-- | sound/pci/riptide/riptide.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/riptide/riptide.c b/sound/pci/riptide/riptide.c index ad5202efd7a..e34ae14908b 100644 --- a/sound/pci/riptide/riptide.c +++ b/sound/pci/riptide/riptide.c | |||
@@ -1890,7 +1890,7 @@ snd_riptide_create(struct snd_card *card, struct pci_dev *pci, | |||
1890 | UNSET_AIE(hwport); | 1890 | UNSET_AIE(hwport); |
1891 | 1891 | ||
1892 | if (request_irq(pci->irq, snd_riptide_interrupt, IRQF_SHARED, | 1892 | if (request_irq(pci->irq, snd_riptide_interrupt, IRQF_SHARED, |
1893 | "RIPTIDE", chip)) { | 1893 | KBUILD_MODNAME, chip)) { |
1894 | snd_printk(KERN_ERR "Riptide: unable to grab IRQ %d\n", | 1894 | snd_printk(KERN_ERR "Riptide: unable to grab IRQ %d\n", |
1895 | pci->irq); | 1895 | pci->irq); |
1896 | snd_riptide_free(chip); | 1896 | snd_riptide_free(chip); |
@@ -2176,7 +2176,7 @@ static void __devexit snd_card_riptide_remove(struct pci_dev *pci) | |||
2176 | } | 2176 | } |
2177 | 2177 | ||
2178 | static struct pci_driver driver = { | 2178 | static struct pci_driver driver = { |
2179 | .name = "RIPTIDE", | 2179 | .name = KBUILD_MODNAME, |
2180 | .id_table = snd_riptide_ids, | 2180 | .id_table = snd_riptide_ids, |
2181 | .probe = snd_card_riptide_probe, | 2181 | .probe = snd_card_riptide_probe, |
2182 | .remove = __devexit_p(snd_card_riptide_remove), | 2182 | .remove = __devexit_p(snd_card_riptide_remove), |
@@ -2188,7 +2188,7 @@ static struct pci_driver driver = { | |||
2188 | 2188 | ||
2189 | #ifdef SUPPORT_JOYSTICK | 2189 | #ifdef SUPPORT_JOYSTICK |
2190 | static struct pci_driver joystick_driver = { | 2190 | static struct pci_driver joystick_driver = { |
2191 | .name = "Riptide Joystick", | 2191 | .name = KBUILD_MODNAME "-joystick", |
2192 | .id_table = snd_riptide_joystick_ids, | 2192 | .id_table = snd_riptide_joystick_ids, |
2193 | .probe = snd_riptide_joystick_probe, | 2193 | .probe = snd_riptide_joystick_probe, |
2194 | .remove = __devexit_p(snd_riptide_joystick_remove), | 2194 | .remove = __devexit_p(snd_riptide_joystick_remove), |