1#ifndef _ASM_SCORE_EXTABLE_H 2#define _ASM_SCORE_EXTABLE_H 3 4struct exception_table_entry { 5 unsigned long insn; 6 unsigned long fixup; 7}; 8 9struct pt_regs; 10extern int fixup_exception(struct pt_regs *regs); 11#endif