You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
parport: parport_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>
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user