2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* linux/arch/arm/mm/extable.c
|
|
|
|
*/
|
|
|
|
#include <linux/module.h>
|
2008-09-06 12:35:55 +02:00
|
|
|
#include <linux/uaccess.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
int fixup_exception(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
const struct exception_table_entry *fixup;
|
|
|
|
|
|
|
|
fixup = search_exception_tables(instruction_pointer(regs));
|
|
|
|
if (fixup)
|
|
|
|
regs->ARM_pc = fixup->fixup;
|
|
|
|
|
|
|
|
return fixup != NULL;
|
|
|
|
}
|