added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / 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;