aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/metag/mm/extable.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/metag/mm/extable.c')
-rw-r--r--arch/metag/mm/extable.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/metag/mm/extable.c b/arch/metag/mm/extable.c
deleted file mode 100644
index 9b92d3ad7f9c..000000000000
--- a/arch/metag/mm/extable.c
+++ /dev/null
@@ -1,15 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0
-#include <linux/extable.h>
-#include <linux/uaccess.h>
-
-int fixup_exception(struct pt_regs *regs)
-{
- const struct exception_table_entry *fixup;
- unsigned long pc = instruction_pointer(regs);
-
- fixup = search_exception_tables(pc);
- if (fixup)
- regs->ctx.CurrPC = fixup->fixup;
-
- return fixup != NULL;
-}