]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
parport: parport_atari: Remove obsolete IRQ_TYPE_SLOW
authorGeert Uytterhoeven <geert@linux-m68k.org>
Sun, 5 Oct 2014 20:34:40 +0000 (22:34 +0200)
committerGeert Uytterhoeven <geert@linux-m68k.org>
Thu, 15 Jan 2015 12:44:50 +0000 (13:44 +0100)
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 <geert@linux-m68k.org>
drivers/parport/parport_atari.c

index 7ad59ac68cf69eab40e4680ee6f266bc05e75794..a81cd2a2747f71a1e0b1600be4781d29f9e228f8 100644 (file)
@@ -192,8 +192,8 @@ static int __init parport_atari_init(void)
                                          &parport_atari_ops);
                if (!p)
                        return -ENODEV;
-               if (request_irq(IRQ_MFP_BUSY, parport_irq_handler,
-                               IRQ_TYPE_SLOW, p->name, p)) {
+               if (request_irq(IRQ_MFP_BUSY, parport_irq_handler, 0, p->name,
+                               p)) {
                        parport_put_port (p);
                        return -ENODEV;
                }