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  * Based on arch/arm/mm/extable.c
3  */
4 
5 #include <linux/module.h>
6 #include <linux/uaccess.h>
7 
9 {
10  const struct exception_table_entry *fixup;
11 
13  if (fixup)
14  regs->pc = fixup->fixup;
15 
16  return fixup != NULL;
17 }