Commit 0afafbf3 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven

parport: parport_atari: Remove obsolete IRQ_TYPE_SLOW

IRQ_TYPE_SLOW is no longer used by the Atari platform interrupt code
since commit 73408565 ("[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 6a6de9ef ("[PATCH] genirq: core")
in v2.6.18-rc1.
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
parent 8f2bfe5f
...@@ -192,8 +192,8 @@ static int __init parport_atari_init(void) ...@@ -192,8 +192,8 @@ static int __init parport_atari_init(void)
&parport_atari_ops); &parport_atari_ops);
if (!p) if (!p)
return -ENODEV; return -ENODEV;
if (request_irq(IRQ_MFP_BUSY, parport_irq_handler, if (request_irq(IRQ_MFP_BUSY, parport_irq_handler, 0, p->name,
IRQ_TYPE_SLOW, p->name, p)) { p)) {
parport_put_port (p); parport_put_port (p);
return -ENODEV; return -ENODEV;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment