forked from Minki/linux
88dd4a748d
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
12 lines
210 B
C
12 lines
210 B
C
#ifndef _ASM_SCORE_EXTABLE_H
|
|
#define _ASM_SCORE_EXTABLE_H
|
|
|
|
struct exception_table_entry {
|
|
unsigned long insn;
|
|
unsigned long fixup;
|
|
};
|
|
|
|
struct pt_regs;
|
|
extern int fixup_exception(struct pt_regs *regs);
|
|
#endif
|