summaryrefslogtreecommitdiff
path: root/arch/score/include/asm/extable.h
blob: c4423ccf830d608e3ad5e552233511edb4859d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
#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