staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / arch / arm64 / mm / extable.c
blob81e694af5f8c26736df04b183382d02501811a81
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Based on arch/arm/mm/extable.c
4 */
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(instruction_pointer(regs));
14 if (fixup)
15 regs->pc = (unsigned long)&fixup->fixup + fixup->fixup;
17 return fixup != NULL;