diff options
Diffstat (limited to 'arch/mn10300/include/asm/exceptions.h')
-rw-r--r-- | arch/mn10300/include/asm/exceptions.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mn10300/include/asm/exceptions.h b/arch/mn10300/include/asm/exceptions.h index fa16466ef3f9..ca3e20508c77 100644 --- a/arch/mn10300/include/asm/exceptions.h +++ b/arch/mn10300/include/asm/exceptions.h | |||
@@ -15,8 +15,8 @@ | |||
15 | 15 | ||
16 | /* | 16 | /* |
17 | * define the breakpoint instruction opcode to use | 17 | * define the breakpoint instruction opcode to use |
18 | * - note that the JTAG unit steals 0xFF, so we want to avoid that if we can | 18 | * - note that the JTAG unit steals 0xFF, so you can't use JTAG and GDBSTUB at |
19 | * (can use 0xF7) | 19 | * the same time. |
20 | */ | 20 | */ |
21 | #define GDBSTUB_BKPT 0xFF | 21 | #define GDBSTUB_BKPT 0xFF |
22 | 22 | ||
@@ -90,7 +90,6 @@ enum exception_code { | |||
90 | 90 | ||
91 | extern void __set_intr_stub(enum exception_code code, void *handler); | 91 | extern void __set_intr_stub(enum exception_code code, void *handler); |
92 | extern void set_intr_stub(enum exception_code code, void *handler); | 92 | extern void set_intr_stub(enum exception_code code, void *handler); |
93 | extern void set_jtag_stub(enum exception_code code, void *handler); | ||
94 | 93 | ||
95 | struct pt_regs; | 94 | struct pt_regs; |
96 | 95 | ||
@@ -102,7 +101,6 @@ extern asmlinkage void dtlb_aerror(void); | |||
102 | extern asmlinkage void raw_bus_error(void); | 101 | extern asmlinkage void raw_bus_error(void); |
103 | extern asmlinkage void double_fault(void); | 102 | extern asmlinkage void double_fault(void); |
104 | extern asmlinkage int system_call(struct pt_regs *); | 103 | extern asmlinkage int system_call(struct pt_regs *); |
105 | extern asmlinkage void fpu_exception(struct pt_regs *, enum exception_code); | ||
106 | extern asmlinkage void nmi(struct pt_regs *, enum exception_code); | 104 | extern asmlinkage void nmi(struct pt_regs *, enum exception_code); |
107 | extern asmlinkage void uninitialised_exception(struct pt_regs *, | 105 | extern asmlinkage void uninitialised_exception(struct pt_regs *, |
108 | enum exception_code); | 106 | enum exception_code); |
@@ -116,6 +114,8 @@ extern void die(const char *, struct pt_regs *, enum exception_code) | |||
116 | 114 | ||
117 | extern int die_if_no_fixup(const char *, struct pt_regs *, enum exception_code); | 115 | extern int die_if_no_fixup(const char *, struct pt_regs *, enum exception_code); |
118 | 116 | ||
117 | #define NUM2EXCEP_IRQ_LEVEL(num) (EXCEP_IRQ_LEVEL0 + (num) * 8) | ||
118 | |||
119 | #endif /* __ASSEMBLY__ */ | 119 | #endif /* __ASSEMBLY__ */ |
120 | 120 | ||
121 | #endif /* _ASM_EXCEPTIONS_H */ | 121 | #endif /* _ASM_EXCEPTIONS_H */ |