diff options
-rw-r--r-- | arch/x86/kernel/syscall_64.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/syscall_64.c b/arch/x86/kernel/syscall_64.c index de87d6008295..0edfafa1b269 100644 --- a/arch/x86/kernel/syscall_64.c +++ b/arch/x86/kernel/syscall_64.c | |||
@@ -21,9 +21,9 @@ extern void sys_ni_syscall(void); | |||
21 | 21 | ||
22 | const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = { | 22 | const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = { |
23 | /* | 23 | /* |
24 | *Smells like a like a compiler bug -- it doesn't work | 24 | * Smells like a compiler bug -- it doesn't work |
25 | *when the & below is removed. | 25 | * when the & below is removed. |
26 | */ | 26 | */ |
27 | [0 ... __NR_syscall_max] = &sys_ni_syscall, | 27 | [0 ... __NR_syscall_max] = &sys_ni_syscall, |
28 | #include <asm/unistd_64.h> | 28 | #include <asm/unistd_64.h> |
29 | }; | 29 | }; |