1 // SPDX-License-Identifier: GPL-2.0
3 * linux/arch/m32r/mm/extable.c
6 #include <linux/extable.h>
7 #include <linux/uaccess.h>
9 int fixup_exception(struct pt_regs
*regs
)
11 const struct exception_table_entry
*fixup
;
13 fixup
= search_exception_tables(regs
->bpc
);
15 regs
->bpc
= fixup
->fixup
;