diff options
author | Bryan Wu <cooloney@kernel.org> | 2008-08-26 22:51:02 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-08-26 22:51:02 -0400 |
commit | 639f6571458948b5112be2cf00c0c2c04db2897d (patch) | |
tree | a4dd7af33d0e92c935ba1e904f6fb7e923ac825e /arch/blackfin/include/asm/irq_handler.h | |
parent | 3d9b7a5ce534f3963afcf8f4777267e5899fe007 (diff) |
Blackfin arch: move include/asm-blackfin header files to arch/blackfin
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/include/asm/irq_handler.h')
-rw-r--r-- | arch/blackfin/include/asm/irq_handler.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/irq_handler.h b/arch/blackfin/include/asm/irq_handler.h new file mode 100644 index 000000000000..139b5208f9d8 --- /dev/null +++ b/arch/blackfin/include/asm/irq_handler.h | |||
@@ -0,0 +1,33 @@ | |||
1 | #ifndef _IRQ_HANDLER_H | ||
2 | #define _IRQ_HANDLER_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | #include <linux/linkage.h> | ||
6 | |||
7 | /* BASE LEVEL interrupt handler routines */ | ||
8 | asmlinkage void evt_exception(void); | ||
9 | asmlinkage void trap(void); | ||
10 | asmlinkage void evt_ivhw(void); | ||
11 | asmlinkage void evt_timer(void); | ||
12 | asmlinkage void evt_nmi(void); | ||
13 | asmlinkage void evt_evt7(void); | ||
14 | asmlinkage void evt_evt8(void); | ||
15 | asmlinkage void evt_evt9(void); | ||
16 | asmlinkage void evt_evt10(void); | ||
17 | asmlinkage void evt_evt11(void); | ||
18 | asmlinkage void evt_evt12(void); | ||
19 | asmlinkage void evt_evt13(void); | ||
20 | asmlinkage void evt_soft_int1(void); | ||
21 | asmlinkage void evt_system_call(void); | ||
22 | asmlinkage void init_exception_buff(void); | ||
23 | asmlinkage void trap_c(struct pt_regs *fp); | ||
24 | asmlinkage void ex_replaceable(void); | ||
25 | asmlinkage void early_trap(void); | ||
26 | |||
27 | extern void *ex_table[]; | ||
28 | extern void return_from_exception(void); | ||
29 | |||
30 | extern int bfin_request_exception(unsigned int exception, void (*handler)(void)); | ||
31 | extern int bfin_free_exception(unsigned int exception, void (*handler)(void)); | ||
32 | |||
33 | #endif | ||