diff options
Diffstat (limited to 'sound/pci/ad1889.c')
-rw-r--r-- | sound/pci/ad1889.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ad1889.c b/sound/pci/ad1889.c index d8f6fd65ebb..201503673f2 100644 --- a/sound/pci/ad1889.c +++ b/sound/pci/ad1889.c | |||
@@ -944,7 +944,7 @@ snd_ad1889_create(struct snd_card *card, | |||
944 | spin_lock_init(&chip->lock); /* only now can we call ad1889_free */ | 944 | spin_lock_init(&chip->lock); /* only now can we call ad1889_free */ |
945 | 945 | ||
946 | if (request_irq(pci->irq, snd_ad1889_interrupt, | 946 | if (request_irq(pci->irq, snd_ad1889_interrupt, |
947 | IRQF_SHARED, card->driver, chip)) { | 947 | IRQF_SHARED, KBUILD_MODNAME, chip)) { |
948 | printk(KERN_ERR PFX "cannot obtain IRQ %d\n", pci->irq); | 948 | printk(KERN_ERR PFX "cannot obtain IRQ %d\n", pci->irq); |
949 | snd_ad1889_free(chip); | 949 | snd_ad1889_free(chip); |
950 | return -EBUSY; | 950 | return -EBUSY; |
@@ -1055,7 +1055,7 @@ static DEFINE_PCI_DEVICE_TABLE(snd_ad1889_ids) = { | |||
1055 | MODULE_DEVICE_TABLE(pci, snd_ad1889_ids); | 1055 | MODULE_DEVICE_TABLE(pci, snd_ad1889_ids); |
1056 | 1056 | ||
1057 | static struct pci_driver ad1889_pci_driver = { | 1057 | static struct pci_driver ad1889_pci_driver = { |
1058 | .name = "AD1889 Audio", | 1058 | .name = KBUILD_MODNAME, |
1059 | .id_table = snd_ad1889_ids, | 1059 | .id_table = snd_ad1889_ids, |
1060 | .probe = snd_ad1889_probe, | 1060 | .probe = snd_ad1889_probe, |
1061 | .remove = __devexit_p(snd_ad1889_remove), | 1061 | .remove = __devexit_p(snd_ad1889_remove), |