extable.h 210 B

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