diff options
Diffstat (limited to 'sound/pci/ca0106')
-rw-r--r-- | sound/pci/ca0106/ca0106_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c index 43775923969..061b7e65458 100644 --- a/sound/pci/ca0106/ca0106_main.c +++ b/sound/pci/ca0106/ca0106_main.c | |||
@@ -1666,7 +1666,7 @@ static int __devinit snd_ca0106_create(int dev, struct snd_card *card, | |||
1666 | } | 1666 | } |
1667 | 1667 | ||
1668 | if (request_irq(pci->irq, snd_ca0106_interrupt, | 1668 | if (request_irq(pci->irq, snd_ca0106_interrupt, |
1669 | IRQF_SHARED, "snd_ca0106", chip)) { | 1669 | IRQF_SHARED, KBUILD_MODNAME, chip)) { |
1670 | snd_ca0106_free(chip); | 1670 | snd_ca0106_free(chip); |
1671 | printk(KERN_ERR "cannot grab irq\n"); | 1671 | printk(KERN_ERR "cannot grab irq\n"); |
1672 | return -EBUSY; | 1672 | return -EBUSY; |
@@ -1933,7 +1933,7 @@ MODULE_DEVICE_TABLE(pci, snd_ca0106_ids); | |||
1933 | 1933 | ||
1934 | // pci_driver definition | 1934 | // pci_driver definition |
1935 | static struct pci_driver driver = { | 1935 | static struct pci_driver driver = { |
1936 | .name = "CA0106", | 1936 | .name = KBUILD_MODNAME, |
1937 | .id_table = snd_ca0106_ids, | 1937 | .id_table = snd_ca0106_ids, |
1938 | .probe = snd_ca0106_probe, | 1938 | .probe = snd_ca0106_probe, |
1939 | .remove = __devexit_p(snd_ca0106_remove), | 1939 | .remove = __devexit_p(snd_ca0106_remove), |