diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-06-13 01:20:15 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2009-06-15 12:17:50 -0400 |
commit | 1dcd775eb302f897865bbab8779ae4165c13cd7e (patch) | |
tree | 467bdd707c0a371469a6b331f48fe6aebce7b1f2 /arch | |
parent | 45e3e1935e2857c54783291107d33323b3ef33c8 (diff) |
[IA64] fix compile error in arch/ia64/mm/extable.c
ad6561dffa17f17bb68d7207d422c26c381c4313 ("module: trim exception table on init
free.") put a bogus trim_init_extable() function into ia64 which didn't compile.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ia64/mm/extable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/ia64/mm/extable.c b/arch/ia64/mm/extable.c index e95d5ad9285d..c99a41e29fe8 100644 --- a/arch/ia64/mm/extable.c +++ b/arch/ia64/mm/extable.c | |||
@@ -8,7 +8,7 @@ | |||
8 | #include <linux/sort.h> | 8 | #include <linux/sort.h> |
9 | 9 | ||
10 | #include <asm/uaccess.h> | 10 | #include <asm/uaccess.h> |
11 | #include <asm/module.h> | 11 | #include <linux/module.h> |
12 | 12 | ||
13 | static int cmp_ex(const void *a, const void *b) | 13 | static int cmp_ex(const void *a, const void *b) |
14 | { | 14 | { |
@@ -55,7 +55,7 @@ void sort_extable (struct exception_table_entry *start, | |||
55 | 55 | ||
56 | static inline unsigned long ex_to_addr(const struct exception_table_entry *x) | 56 | static inline unsigned long ex_to_addr(const struct exception_table_entry *x) |
57 | { | 57 | { |
58 | return (unsigned long)&x->insn + x->insn; | 58 | return (unsigned long)&x->addr + x->addr; |
59 | } | 59 | } |
60 | 60 | ||
61 | #ifdef CONFIG_MODULES | 61 | #ifdef CONFIG_MODULES |