xref: /openbmc/linux/arch/mips/include/asm/extable.h (revision b2441318)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
229abfbd9SAl Viro #ifndef _ASM_EXTABLE_H
329abfbd9SAl Viro #define _ASM_EXTABLE_H
429abfbd9SAl Viro 
529abfbd9SAl Viro struct exception_table_entry
629abfbd9SAl Viro {
729abfbd9SAl Viro 	unsigned long insn;
829abfbd9SAl Viro 	unsigned long nextinsn;
929abfbd9SAl Viro };
1029abfbd9SAl Viro 
1129abfbd9SAl Viro struct pt_regs;
1229abfbd9SAl Viro extern int fixup_exception(struct pt_regs *regs);
1329abfbd9SAl Viro 
1429abfbd9SAl Viro #endif
15