Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
extable.c
Go to the documentation of this file.
1 /*
2  * linux/arch/arm/mm/extable.c
3  */
4 #include <linux/module.h>
5 #include <linux/uaccess.h>
6 
8 {
9  const struct exception_table_entry *fixup;
10 
12  if (fixup)
13  regs->ARM_pc = fixup->fixup;
14 
15  return fixup != NULL;
16 }