summaryrefslogtreecommitdiff
path: root/ANDROID_3.4.5/arch/m32r/mm/extable.c
diff options
context:
space:
mode:
Diffstat (limited to 'ANDROID_3.4.5/arch/m32r/mm/extable.c')
-rw-r--r--ANDROID_3.4.5/arch/m32r/mm/extable.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/ANDROID_3.4.5/arch/m32r/mm/extable.c b/ANDROID_3.4.5/arch/m32r/mm/extable.c
deleted file mode 100644
index 1743f23d..00000000
--- a/ANDROID_3.4.5/arch/m32r/mm/extable.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * linux/arch/m32r/mm/extable.c
- */
-
-#include <linux/module.h>
-#include <asm/uaccess.h>
-
-int fixup_exception(struct pt_regs *regs)
-{
- const struct exception_table_entry *fixup;
-
- fixup = search_exception_tables(regs->bpc);
- if (fixup) {
- regs->bpc = fixup->fixup;
- return 1;
- }
-
- return 0;
-}