Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
arch
m32r
mm
extable.c
Go to the documentation of this file.
1
/*
2
* linux/arch/m32r/mm/extable.c
3
*/
4
5
#include <linux/module.h>
6
#include <asm/uaccess.h>
7
8
int
fixup_exception
(
struct
pt_regs
*
regs
)
9
{
10
const
struct
exception_table_entry
*
fixup
;
11
12
fixup =
search_exception_tables
(regs->
bpc
);
13
if
(fixup) {
14
regs->
bpc
= fixup->
fixup
;
15
return
1;
16
}
17
18
return
0;
19
}
Generated on Thu Jan 10 2013 12:53:52 for Linux Kernel by
1.8.2