GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / arm / mm / extable.c
blob9d285626bc7da4fe3e2be2e952c38923c05f5204
1 /*
2 * linux/arch/arm/mm/extable.c
3 */
4 #include <linux/module.h>
5 #include <linux/uaccess.h>
7 int fixup_exception(struct pt_regs *regs)
9 const struct exception_table_entry *fixup;
11 fixup = search_exception_tables(instruction_pointer(regs));
12 if (fixup)
13 regs->ARM_pc = fixup->fixup;
15 return fixup != NULL;