Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/sh/mm/extable.c |
| 3 | * Taken from: |
| 4 | * linux/arch/i386/mm/extable.c |
| 5 | */ |
| 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/module.h> |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 8 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | int fixup_exception(struct pt_regs *regs) |
| 11 | { |
| 12 | const struct exception_table_entry *fixup; |
| 13 | |
| 14 | fixup = search_exception_tables(regs->pc); |
| 15 | if (fixup) { |
| 16 | regs->pc = fixup->fixup; |
| 17 | return 1; |
| 18 | } |
| 19 | |
| 20 | return 0; |
| 21 | } |