1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2005-2017 Andes Technology Corporation
4 #include <linux/extable.h>
5 #include <linux/uaccess.h>
7 int fixup_exception(struct pt_regs *regs)
9 const struct exception_table_entry *fixup;
11 fixup = search_exception_tables(instruction_pointer(regs));
13 regs->ipc = fixup->fixup;