diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-10-26 17:51:48 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-10-26 17:51:48 -0400 |
commit | 9430148d800dd929ad73da4c6afb67f793f8af43 (patch) | |
tree | 437d0aec41428cbb310a202100ba581c63fbe89e /sound/drivers | |
parent | d22665702226e9c40bc331098559e3d55e7cd43d (diff) | |
parent | 88e24c3a4b30a6bd361f2b5ce602667a8161b2e8 (diff) |
Merge branch 'topic/remove-irqf_disable' into for-linus
Diffstat (limited to 'sound/drivers')
-rw-r--r-- | sound/drivers/ml403-ac97cr.c | 4 | ||||
-rw-r--r-- | sound/drivers/mpu401/mpu401_uart.c | 2 | ||||
-rw-r--r-- | sound/drivers/mtpav.c | 2 | ||||
-rw-r--r-- | sound/drivers/serial-u16550.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/sound/drivers/ml403-ac97cr.c b/sound/drivers/ml403-ac97cr.c index 5cfcb908c430..2c7a7636f472 100644 --- a/sound/drivers/ml403-ac97cr.c +++ b/sound/drivers/ml403-ac97cr.c | |||
@@ -1153,7 +1153,7 @@ snd_ml403_ac97cr_create(struct snd_card *card, struct platform_device *pfdev, | |||
1153 | "0x%x done\n", (unsigned int)ml403_ac97cr->port); | 1153 | "0x%x done\n", (unsigned int)ml403_ac97cr->port); |
1154 | /* get irq */ | 1154 | /* get irq */ |
1155 | irq = platform_get_irq(pfdev, 0); | 1155 | irq = platform_get_irq(pfdev, 0); |
1156 | if (request_irq(irq, snd_ml403_ac97cr_irq, IRQF_DISABLED, | 1156 | if (request_irq(irq, snd_ml403_ac97cr_irq, 0, |
1157 | dev_name(&pfdev->dev), (void *)ml403_ac97cr)) { | 1157 | dev_name(&pfdev->dev), (void *)ml403_ac97cr)) { |
1158 | snd_printk(KERN_ERR SND_ML403_AC97CR_DRIVER ": " | 1158 | snd_printk(KERN_ERR SND_ML403_AC97CR_DRIVER ": " |
1159 | "unable to grab IRQ %d\n", | 1159 | "unable to grab IRQ %d\n", |
@@ -1166,7 +1166,7 @@ snd_ml403_ac97cr_create(struct snd_card *card, struct platform_device *pfdev, | |||
1166 | "request (playback) irq %d done\n", | 1166 | "request (playback) irq %d done\n", |
1167 | ml403_ac97cr->irq); | 1167 | ml403_ac97cr->irq); |
1168 | irq = platform_get_irq(pfdev, 1); | 1168 | irq = platform_get_irq(pfdev, 1); |
1169 | if (request_irq(irq, snd_ml403_ac97cr_irq, IRQF_DISABLED, | 1169 | if (request_irq(irq, snd_ml403_ac97cr_irq, 0, |
1170 | dev_name(&pfdev->dev), (void *)ml403_ac97cr)) { | 1170 | dev_name(&pfdev->dev), (void *)ml403_ac97cr)) { |
1171 | snd_printk(KERN_ERR SND_ML403_AC97CR_DRIVER ": " | 1171 | snd_printk(KERN_ERR SND_ML403_AC97CR_DRIVER ": " |
1172 | "unable to grab IRQ %d\n", | 1172 | "unable to grab IRQ %d\n", |
diff --git a/sound/drivers/mpu401/mpu401_uart.c b/sound/drivers/mpu401/mpu401_uart.c index 9d01c181feca..e91698a634b2 100644 --- a/sound/drivers/mpu401/mpu401_uart.c +++ b/sound/drivers/mpu401/mpu401_uart.c | |||
@@ -577,7 +577,7 @@ int snd_mpu401_uart_new(struct snd_card *card, int device, | |||
577 | else | 577 | else |
578 | mpu->cport = port + 1; | 578 | mpu->cport = port + 1; |
579 | if (irq >= 0) { | 579 | if (irq >= 0) { |
580 | if (request_irq(irq, snd_mpu401_uart_interrupt, IRQF_DISABLED, | 580 | if (request_irq(irq, snd_mpu401_uart_interrupt, 0, |
581 | "MPU401 UART", (void *) mpu)) { | 581 | "MPU401 UART", (void *) mpu)) { |
582 | snd_printk(KERN_ERR "mpu401_uart: " | 582 | snd_printk(KERN_ERR "mpu401_uart: " |
583 | "unable to grab IRQ %d\n", irq); | 583 | "unable to grab IRQ %d\n", irq); |
diff --git a/sound/drivers/mtpav.c b/sound/drivers/mtpav.c index 5c426df87678..1eef4ccebe4b 100644 --- a/sound/drivers/mtpav.c +++ b/sound/drivers/mtpav.c | |||
@@ -589,7 +589,7 @@ static int __devinit snd_mtpav_get_ISA(struct mtpav * mcard) | |||
589 | return -EBUSY; | 589 | return -EBUSY; |
590 | } | 590 | } |
591 | mcard->port = port; | 591 | mcard->port = port; |
592 | if (request_irq(irq, snd_mtpav_irqh, IRQF_DISABLED, "MOTU MTPAV", mcard)) { | 592 | if (request_irq(irq, snd_mtpav_irqh, 0, "MOTU MTPAV", mcard)) { |
593 | snd_printk(KERN_ERR "MTVAP IRQ %d busy\n", irq); | 593 | snd_printk(KERN_ERR "MTVAP IRQ %d busy\n", irq); |
594 | return -EBUSY; | 594 | return -EBUSY; |
595 | } | 595 | } |
diff --git a/sound/drivers/serial-u16550.c b/sound/drivers/serial-u16550.c index a25fb7b1f441..fc1d822802c3 100644 --- a/sound/drivers/serial-u16550.c +++ b/sound/drivers/serial-u16550.c | |||
@@ -816,7 +816,7 @@ static int __devinit snd_uart16550_create(struct snd_card *card, | |||
816 | 816 | ||
817 | if (irq >= 0 && irq != SNDRV_AUTO_IRQ) { | 817 | if (irq >= 0 && irq != SNDRV_AUTO_IRQ) { |
818 | if (request_irq(irq, snd_uart16550_interrupt, | 818 | if (request_irq(irq, snd_uart16550_interrupt, |
819 | IRQF_DISABLED, "Serial MIDI", uart)) { | 819 | 0, "Serial MIDI", uart)) { |
820 | snd_printk(KERN_WARNING | 820 | snd_printk(KERN_WARNING |
821 | "irq %d busy. Using Polling.\n", irq); | 821 | "irq %d busy. Using Polling.\n", irq); |
822 | } else { | 822 | } else { |