diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-04-21 22:50:52 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-11-08 22:35:49 +0100 |
commit | 4936f63cb790e265eb30a1e1630bb90bd6af0e7a (patch) | |
tree | 9cd5da60334940b4d6b190a10262f02823b06aa5 /arch/m68k/include/asm/hardirq.h | |
parent | m68k/irq: Remove obsolete IRQ_FLG_* users (diff) | |
download | linux-4936f63cb790e265eb30a1e1630bb90bd6af0e7a.tar.xz linux-4936f63cb790e265eb30a1e1630bb90bd6af0e7a.zip |
m68k/irq: Add genirq support
Disabled on all platforms for now
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
[v1] Acked-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/m68k/include/asm/hardirq.h')
-rw-r--r-- | arch/m68k/include/asm/hardirq.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/hardirq.h b/arch/m68k/include/asm/hardirq.h index 870e5347155b..db30ed276878 100644 --- a/arch/m68k/include/asm/hardirq.h +++ b/arch/m68k/include/asm/hardirq.h @@ -18,6 +18,11 @@ #ifdef CONFIG_MMU +static inline void ack_bad_irq(unsigned int irq) +{ + pr_crit("unexpected IRQ trap at vector %02x\n", irq); +} + /* entry.S is sensitive to the offsets of these fields */ typedef struct { unsigned int __softirq_pending; |