extable.h 241 B

123456789101112131415
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_EXTABLE_H
  3. #define _ASM_EXTABLE_H
  4. struct exception_table_entry
  5. {
  6. unsigned long insn;
  7. unsigned long nextinsn;
  8. };
  9. struct pt_regs;
  10. extern int fixup_exception(struct pt_regs *regs);
  11. #endif