diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/syscall_32.c | 2 | ||||
-rw-r--r-- | arch/x86/kernel/syscall_64.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/syscall_32.c b/arch/x86/kernel/syscall_32.c index 147fcd4941c4..e9bcd57d8a9e 100644 --- a/arch/x86/kernel/syscall_32.c +++ b/arch/x86/kernel/syscall_32.c | |||
@@ -15,7 +15,7 @@ typedef asmlinkage void (*sys_call_ptr_t)(void); | |||
15 | 15 | ||
16 | extern asmlinkage void sys_ni_syscall(void); | 16 | extern asmlinkage void sys_ni_syscall(void); |
17 | 17 | ||
18 | const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = { | 18 | __visible const sys_call_ptr_t sys_call_table[__NR_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. |
diff --git a/arch/x86/kernel/syscall_64.c b/arch/x86/kernel/syscall_64.c index ec008f5943ac..4ac730b37f0b 100644 --- a/arch/x86/kernel/syscall_64.c +++ b/arch/x86/kernel/syscall_64.c | |||
@@ -22,7 +22,7 @@ | |||
22 | 22 | ||
23 | extern void sys_ni_syscall(void); | 23 | extern void sys_ni_syscall(void); |
24 | 24 | ||
25 | const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = { | 25 | asmlinkage const sys_call_ptr_t sys_call_table[__NR_syscall_max+1] = { |
26 | /* | 26 | /* |
27 | * Smells like a compiler bug -- it doesn't work | 27 | * Smells like a compiler bug -- it doesn't work |
28 | * when the & below is removed. | 28 | * when the & below is removed. |