Skip to content

Commit 03347e2

Browse files
committed
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6: [IA64] fix compile error in arch/ia64/mm/extable.c
2 parents 19035e5 + 1dcd775 commit 03347e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/ia64/mm/extable.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <linux/sort.h>
99

1010
#include <asm/uaccess.h>
11-
#include <asm/module.h>
11+
#include <linux/module.h>
1212

1313
static int cmp_ex(const void *a, const void *b)
1414
{
@@ -55,7 +55,7 @@ void sort_extable (struct exception_table_entry *start,
5555

5656
static inline unsigned long ex_to_addr(const struct exception_table_entry *x)
5757
{
58-
return (unsigned long)&x->insn + x->insn;
58+
return (unsigned long)&x->addr + x->addr;
5959
}
6060

6161
#ifdef CONFIG_MODULES

0 commit comments

Comments
 (0)