aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/um/sys_call_table_32.c2
-rw-r--r--arch/x86/um/sys_call_table_64.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/um/sys_call_table_32.c b/arch/x86/um/sys_call_table_32.c
index b897fcae620..0606aa3e92a 100644
--- a/arch/x86/um/sys_call_table_32.c
+++ b/arch/x86/um/sys_call_table_32.c
@@ -43,7 +43,7 @@ typedef void (*sys_call_ptr_t)(void);
43 43
44extern void sys_ni_syscall(void); 44extern void sys_ni_syscall(void);
45 45
46sys_call_ptr_t sys_call_table[] __cacheline_aligned = { 46const sys_call_ptr_t sys_call_table[] __cacheline_aligned = {
47 /* 47 /*
48 * Smells like a compiler bug -- it doesn't work 48 * Smells like a compiler bug -- it doesn't work
49 * when the & below is removed. 49 * when the & below is removed.
diff --git a/arch/x86/um/sys_call_table_64.c b/arch/x86/um/sys_call_table_64.c
index 797a639bcca..fe626c3ba01 100644
--- a/arch/x86/um/sys_call_table_64.c
+++ b/arch/x86/um/sys_call_table_64.c
@@ -45,7 +45,7 @@ typedef void (*sys_call_ptr_t)(void);
45 45
46extern void sys_ni_syscall(void); 46extern void sys_ni_syscall(void);
47 47
48sys_call_ptr_t sys_call_table[] __cacheline_aligned = { 48const sys_call_ptr_t sys_call_table[] __cacheline_aligned = {
49 /* 49 /*
50 * Smells like a compiler bug -- it doesn't work 50 * Smells like a compiler bug -- it doesn't work
51 * when the & below is removed. 51 * when the & below is removed.