You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
sound: irq: Remove IRQF_DISABLED
Since commit [e58aa3d2: genirq: Run irq handlers with interrupts disabled], We run all interrupt handlers with interrupts disabled and we even check and yell when an interrupt handler returns with interrupts enabled (see commit [b738a50a: genirq: Warn when handler enables interrupts]). So now this flag is a NOOP and can be removed. Signed-off-by: Yong Zhang <yong.zhang0@gmail.com> Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
+1
-1
@@ -845,7 +845,7 @@ static int __devinit snd_ps3_allocate_irq(void)
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = request_irq(the_card.irq_no, snd_ps3_interrupt, IRQF_DISABLED,
|
||||
ret = request_irq(the_card.irq_no, snd_ps3_interrupt, 0,
|
||||
SND_PS3_DRIVER_NAME, &the_card);
|
||||
if (ret) {
|
||||
pr_info("%s: request_irq failed (%d)\n", __func__, ret);
|
||||
|
||||
Reference in New Issue
Block a user