From: Geert Uytterhoeven Date: Sun, 5 Oct 2014 20:34:40 +0000 (+0200) Subject: sound: dmasound_atari: Remove obsolete IRQ_TYPE_SLOW X-Git-Tag: v4.14-rc1~6003^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80dbb01ad762a2a111b5abad55e44b0408ec342e;p=platform%2Fkernel%2Flinux-rpi.git sound: dmasound_atari: Remove obsolete IRQ_TYPE_SLOW IRQ_TYPE_SLOW is no longer used by the Atari platform interrupt code since commit 734085651c9b80aa ("[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 commit 6a6de9ef5850d063 ("[PATCH] genirq: core") in v2.6.18-rc1. Signed-off-by: Geert Uytterhoeven Reviewed-by: Takashi Iwai --- diff --git a/sound/oss/dmasound/dmasound_atari.c b/sound/oss/dmasound/dmasound_atari.c index 13c2144..1c56bf5 100644 --- a/sound/oss/dmasound/dmasound_atari.c +++ b/sound/oss/dmasound/dmasound_atari.c @@ -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. */