diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-07-22 02:43:24 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-07-22 02:43:24 -0400 |
commit | 7d339ae99758bc21033d4a19bcd4f7b55f96e24e (patch) | |
tree | a5bb46e47f7c4ae193cdf1a73c361144d6099df8 /sound/pci/rme9652 | |
parent | 13b137ef0367237909bb2dc38babfb8305154676 (diff) | |
parent | 000477a0fe1af14355a52622a77ccce8bfd7230d (diff) |
Merge branch 'topic/misc' into for-linus
Diffstat (limited to 'sound/pci/rme9652')
-rw-r--r-- | sound/pci/rme9652/hdsp.c | 4 | ||||
-rw-r--r-- | sound/pci/rme9652/hdspm.c | 4 | ||||
-rw-r--r-- | sound/pci/rme9652/rme9652.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sound/pci/rme9652/hdsp.c b/sound/pci/rme9652/hdsp.c index 2d8332416c83..1c6d1e1c27c1 100644 --- a/sound/pci/rme9652/hdsp.c +++ b/sound/pci/rme9652/hdsp.c | |||
@@ -5482,7 +5482,7 @@ static int __devinit snd_hdsp_create(struct snd_card *card, | |||
5482 | } | 5482 | } |
5483 | 5483 | ||
5484 | if (request_irq(pci->irq, snd_hdsp_interrupt, IRQF_SHARED, | 5484 | if (request_irq(pci->irq, snd_hdsp_interrupt, IRQF_SHARED, |
5485 | "hdsp", hdsp)) { | 5485 | KBUILD_MODNAME, hdsp)) { |
5486 | snd_printk(KERN_ERR "Hammerfall-DSP: unable to use IRQ %d\n", pci->irq); | 5486 | snd_printk(KERN_ERR "Hammerfall-DSP: unable to use IRQ %d\n", pci->irq); |
5487 | return -EBUSY; | 5487 | return -EBUSY; |
5488 | } | 5488 | } |
@@ -5637,7 +5637,7 @@ static void __devexit snd_hdsp_remove(struct pci_dev *pci) | |||
5637 | } | 5637 | } |
5638 | 5638 | ||
5639 | static struct pci_driver driver = { | 5639 | static struct pci_driver driver = { |
5640 | .name = "RME Hammerfall DSP", | 5640 | .name = KBUILD_MODNAME, |
5641 | .id_table = snd_hdsp_ids, | 5641 | .id_table = snd_hdsp_ids, |
5642 | .probe = snd_hdsp_probe, | 5642 | .probe = snd_hdsp_probe, |
5643 | .remove = __devexit_p(snd_hdsp_remove), | 5643 | .remove = __devexit_p(snd_hdsp_remove), |
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index c8e402fc3782..af130ee0c45d 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c | |||
@@ -6441,7 +6441,7 @@ static int __devinit snd_hdspm_create(struct snd_card *card, | |||
6441 | hdspm->port + io_extent - 1); | 6441 | hdspm->port + io_extent - 1); |
6442 | 6442 | ||
6443 | if (request_irq(pci->irq, snd_hdspm_interrupt, | 6443 | if (request_irq(pci->irq, snd_hdspm_interrupt, |
6444 | IRQF_SHARED, "hdspm", hdspm)) { | 6444 | IRQF_SHARED, KBUILD_MODNAME, hdspm)) { |
6445 | snd_printk(KERN_ERR "HDSPM: unable to use IRQ %d\n", pci->irq); | 6445 | snd_printk(KERN_ERR "HDSPM: unable to use IRQ %d\n", pci->irq); |
6446 | return -EBUSY; | 6446 | return -EBUSY; |
6447 | } | 6447 | } |
@@ -6779,7 +6779,7 @@ static void __devexit snd_hdspm_remove(struct pci_dev *pci) | |||
6779 | } | 6779 | } |
6780 | 6780 | ||
6781 | static struct pci_driver driver = { | 6781 | static struct pci_driver driver = { |
6782 | .name = "RME Hammerfall DSP MADI", | 6782 | .name = KBUILD_MODNAME, |
6783 | .id_table = snd_hdspm_ids, | 6783 | .id_table = snd_hdspm_ids, |
6784 | .probe = snd_hdspm_probe, | 6784 | .probe = snd_hdspm_probe, |
6785 | .remove = __devexit_p(snd_hdspm_remove), | 6785 | .remove = __devexit_p(snd_hdspm_remove), |
diff --git a/sound/pci/rme9652/rme9652.c b/sound/pci/rme9652/rme9652.c index c492af5b25f3..1c7bc1ef8186 100644 --- a/sound/pci/rme9652/rme9652.c +++ b/sound/pci/rme9652/rme9652.c | |||
@@ -2479,7 +2479,7 @@ static int __devinit snd_rme9652_create(struct snd_card *card, | |||
2479 | } | 2479 | } |
2480 | 2480 | ||
2481 | if (request_irq(pci->irq, snd_rme9652_interrupt, IRQF_SHARED, | 2481 | if (request_irq(pci->irq, snd_rme9652_interrupt, IRQF_SHARED, |
2482 | "rme9652", rme9652)) { | 2482 | KBUILD_MODNAME, rme9652)) { |
2483 | snd_printk(KERN_ERR "unable to request IRQ %d\n", pci->irq); | 2483 | snd_printk(KERN_ERR "unable to request IRQ %d\n", pci->irq); |
2484 | return -EBUSY; | 2484 | return -EBUSY; |
2485 | } | 2485 | } |
@@ -2632,7 +2632,7 @@ static void __devexit snd_rme9652_remove(struct pci_dev *pci) | |||
2632 | } | 2632 | } |
2633 | 2633 | ||
2634 | static struct pci_driver driver = { | 2634 | static struct pci_driver driver = { |
2635 | .name = "RME Digi9652 (Hammerfall)", | 2635 | .name = KBUILD_MODNAME, |
2636 | .id_table = snd_rme9652_ids, | 2636 | .id_table = snd_rme9652_ids, |
2637 | .probe = snd_rme9652_probe, | 2637 | .probe = snd_rme9652_probe, |
2638 | .remove = __devexit_p(snd_rme9652_remove), | 2638 | .remove = __devexit_p(snd_rme9652_remove), |