aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/ia32/syscall_ia32.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/ia32/syscall_ia32.c')
-rw-r--r--arch/x86/ia32/syscall_ia32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/ia32/syscall_ia32.c b/arch/x86/ia32/syscall_ia32.c
index 4754ba0f5d9f..3429b14793e3 100644
--- a/arch/x86/ia32/syscall_ia32.c
+++ b/arch/x86/ia32/syscall_ia32.c
@@ -13,13 +13,13 @@
13 13
14typedef void (*sys_call_ptr_t)(void); 14typedef void (*sys_call_ptr_t)(void);
15 15
16extern void compat_ni_syscall(void); 16extern asmlinkage void sys_ni_syscall(void);
17 17
18const sys_call_ptr_t ia32_sys_call_table[__NR_ia32_syscall_max+1] = { 18const sys_call_ptr_t ia32_sys_call_table[__NR_ia32_syscall_max+1] = {
19 /* 19 /*
20 * Smells like a compiler bug -- it doesn't work 20 * Smells like a compiler bug -- it doesn't work
21 * when the & below is removed. 21 * when the & below is removed.
22 */ 22 */
23 [0 ... __NR_ia32_syscall_max] = &compat_ni_syscall, 23 [0 ... __NR_ia32_syscall_max] = &sys_ni_syscall,
24#include <asm/syscalls_32.h> 24#include <asm/syscalls_32.h>
25}; 25};