Merge tag 'dmaengine-fix-4.8-rc5' of git://git.infradead.org/users/vkoul/slave-dma
[deliverable/linux.git] / arch / metag / mm / extable.c
1
2 #include <linux/module.h>
3 #include <linux/uaccess.h>
4
5 int fixup_exception(struct pt_regs *regs)
6 {
7 const struct exception_table_entry *fixup;
8 unsigned long pc = instruction_pointer(regs);
9
10 fixup = search_exception_tables(pc);
11 if (fixup)
12 regs->ctx.CurrPC = fixup->fixup;
13
14 return fixup != NULL;
15 }
This page took 0.03009 seconds and 5 git commands to generate.