aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m32r/mm/extable.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/m32r/mm/extable.c')
-rw-r--r--arch/m32r/mm/extable.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/m32r/mm/extable.c b/arch/m32r/mm/extable.c
new file mode 100644
index 000000000000..9a97363b6524
--- /dev/null
+++ b/arch/m32r/mm/extable.c
@@ -0,0 +1,22 @@
1/*
2 * linux/arch/i386/mm/extable.c
3 */
4
5#include <linux/config.h>
6#include <linux/module.h>
7#include <linux/spinlock.h>
8#include <asm/uaccess.h>
9
10int fixup_exception(struct pt_regs *regs)
11{
12 const struct exception_table_entry *fixup;
13
14 fixup = search_exception_tables(regs->bpc);
15 if (fixup) {
16 regs->bpc = fixup->fixup;
17 return 1;
18 }
19
20 return 0;
21}
22