diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-09-05 18:35:50 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-10-06 01:36:18 +0300 |
commit | 29abfbd9cbba798a89c9f9f977d7d63bff5a5d04 (patch) | |
tree | a84919662bc120caf0cb51b52ee3d528a64e547b /arch/mips/include/asm/extable.h | |
parent | 45caf470077ae6b02da6d5eaee94003ee1543ca3 (diff) | |
download | linux-29abfbd9cbba798a89c9f9f977d7d63bff5a5d04.tar.xz |
mips: separate extable.h, switch module.h to it
more victims of indirect include chains - au1200fb
lasat/picvue_proc and watchdog/ath79_wdt
... as well as tb0219, spotted by Sudip Mukherjee
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/mips/include/asm/extable.h')
-rw-r--r-- | arch/mips/include/asm/extable.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/mips/include/asm/extable.h b/arch/mips/include/asm/extable.h new file mode 100644 index 000000000000..dce7a627a925 --- /dev/null +++ b/arch/mips/include/asm/extable.h @@ -0,0 +1,13 @@ +#ifndef _ASM_EXTABLE_H +#define _ASM_EXTABLE_H + +struct exception_table_entry +{ + unsigned long insn; + unsigned long nextinsn; +}; + +struct pt_regs; +extern int fixup_exception(struct pt_regs *regs); + +#endif |