Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

parport: parport_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 <geert@linux-m68k.org>

+2 -2
+2 -2
drivers/parport/parport_atari.c
··· 192 192 &parport_atari_ops); 193 193 if (!p) 194 194 return -ENODEV; 195 - if (request_irq(IRQ_MFP_BUSY, parport_irq_handler, 196 - IRQ_TYPE_SLOW, p->name, p)) { 195 + if (request_irq(IRQ_MFP_BUSY, parport_irq_handler, 0, p->name, 196 + p)) { 197 197 parport_put_port (p); 198 198 return -ENODEV; 199 199 }