mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
sound: dmasound_atari: Remove obsolete IRQ_TYPE_SLOW
IRQ_TYPE_SLOW is no longer used by the Atari platform interrupt code since commit734085651c
("[PATCH] m68k: convert atari irq code") in v2.6.18-rc1, so drop it. Note that its value has been reused for a different purpose (IRQ_TYPE_NONE) since commit6a6de9ef58
("[PATCH] genirq: core") in v2.6.18-rc1. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Reviewed-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
1fc65d5124
commit
80dbb01ad7
@ -851,7 +851,7 @@ static int __init AtaIrqInit(void)
|
||||
st_mfp.tim_dt_a = 1; /* Cause interrupt after first event. */
|
||||
st_mfp.tim_ct_a = 8; /* Turn on event counting. */
|
||||
/* Register interrupt handler. */
|
||||
if (request_irq(IRQ_MFP_TIMA, AtaInterrupt, IRQ_TYPE_SLOW, "DMA sound",
|
||||
if (request_irq(IRQ_MFP_TIMA, AtaInterrupt, 0, "DMA sound",
|
||||
AtaInterrupt))
|
||||
return 0;
|
||||
st_mfp.int_en_a |= 0x20; /* Turn interrupt on. */
|
||||
|
Loading…
Reference in New Issue
Block a user