diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-07-31 00:07:37 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-07-31 00:07:37 -0400 |
commit | da9d5108f43d63f09b0328a4211f5f404ea05ab0 (patch) | |
tree | 6b59b412bbf290d8423fddd64d248a8a8f6a3ee3 /arch/sh64 | |
parent | 78d98277e2bdad7213ca910950175ec6ada99513 (diff) |
sh64: Fix irq_intc build failure.
Needs interrupt.h:
CC arch/sh64/kernel/irq_intc.o
arch/sh64/kernel/irq_intc.c: In function 'make_intc_irq':
arch/sh64/kernel/irq_intc.c:179: error: implicit declaration of function 'disable_irq_nosync'
make[1]: *** [arch/sh64/kernel/irq_intc.o] Error 1
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh64')
-rw-r--r-- | arch/sh64/kernel/irq_intc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh64/kernel/irq_intc.c b/arch/sh64/kernel/irq_intc.c index 42c07d2e71d9..3b63a93198f2 100644 --- a/arch/sh64/kernel/irq_intc.c +++ b/arch/sh64/kernel/irq_intc.c | |||
@@ -16,6 +16,7 @@ | |||
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include <linux/init.h> | 18 | #include <linux/init.h> |
19 | #include <linux/interrupt.h> | ||
19 | #include <linux/irq.h> | 20 | #include <linux/irq.h> |
20 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
21 | #include <linux/stddef.h> | 22 | #include <linux/stddef.h> |