diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2006-06-25 08:47:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-25 13:00:57 -0400 |
commit | b5dc7840b3ebe9c7967dd8ba73db957767009ff9 (patch) | |
tree | 0c5d45c592f140937e4e3e49ac9bc4ea8fc2cef7 /arch/m68k/amiga | |
parent | 1d174cfb0f2a8967433e157bae9c2d4dcdee5324 (diff) |
[PATCH] m68k: introduce irq controller
Introduce irq controller and use it to manage auto vector interrupts.
Introduce setup_irq() which can be used for irq setup.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m68k/amiga')
-rw-r--r-- | arch/m68k/amiga/amiints.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/m68k/amiga/amiints.c b/arch/m68k/amiga/amiints.c index d02458ebd345..e2d47b7bdfc1 100644 --- a/arch/m68k/amiga/amiints.c +++ b/arch/m68k/amiga/amiints.c | |||
@@ -40,6 +40,7 @@ | |||
40 | #include <linux/sched.h> | 40 | #include <linux/sched.h> |
41 | #include <linux/kernel_stat.h> | 41 | #include <linux/kernel_stat.h> |
42 | #include <linux/init.h> | 42 | #include <linux/init.h> |
43 | #include <linux/interrupt.h> | ||
43 | #include <linux/errno.h> | 44 | #include <linux/errno.h> |
44 | #include <linux/seq_file.h> | 45 | #include <linux/seq_file.h> |
45 | 46 | ||
@@ -484,13 +485,10 @@ static irqreturn_t ami_int7(int irq, void *dev_id, struct pt_regs *fp) | |||
484 | } | 485 | } |
485 | 486 | ||
486 | irqreturn_t (*amiga_default_handler[SYS_IRQS])(int, void *, struct pt_regs *) = { | 487 | irqreturn_t (*amiga_default_handler[SYS_IRQS])(int, void *, struct pt_regs *) = { |
487 | [0] = ami_badint, | ||
488 | [1] = ami_int1, | 488 | [1] = ami_int1, |
489 | [2] = ami_badint, | ||
490 | [3] = ami_int3, | 489 | [3] = ami_int3, |
491 | [4] = ami_int4, | 490 | [4] = ami_int4, |
492 | [5] = ami_int5, | 491 | [5] = ami_int5, |
493 | [6] = ami_badint, | ||
494 | [7] = ami_int7 | 492 | [7] = ami_int7 |
495 | }; | 493 | }; |
496 | 494 | ||