aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/parport
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2014-10-05 22:34:40 +0200
committerGeert Uytterhoeven <geert@linux-m68k.org>2015-01-15 13:44:50 +0100
commit0afafbf3aa7abc741920ff74d75093ae55864b40 (patch)
tree2957cdc8488a4e94dabc7fc65182271dfe1c30a1 /drivers/parport
parentnet: atarilance: Remove obsolete IRQ_TYPE_PRIO (diff)
downloadlinux-dev-0afafbf3aa7abc741920ff74d75093ae55864b40.tar.xz
linux-dev-0afafbf3aa7abc741920ff74d75093ae55864b40.zip
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>
Diffstat (limited to 'drivers/parport')
-rw-r--r--drivers/parport/parport_atari.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/parport/parport_atari.c b/drivers/parport/parport_atari.c
index 7ad59ac68cf6..a81cd2a2747f 100644
--- a/drivers/parport/parport_atari.c
+++ b/drivers/parport/parport_atari.c
@@ -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;
}