summaryrefslogtreecommitdiff
path: root/arch/x86/um/sys_call_table_32.c
diff options
context:
space:
mode:
authorBrian Gerst <brgerst@gmail.com>2020-03-13 15:51:36 -0400
committerThomas Gleixner <tglx@linutronix.de>2020-03-21 16:03:22 +0100
commitb5592e5c0d8682e0e82b42c91fd7265c3cce19e1 (patch)
treebdb64b2b436725b6a5ed4bd17c70f88e456ac3f6 /arch/x86/um/sys_call_table_32.c
parentd3b1b776eefcc1695d15730f37cdaab201fd8707 (diff)
x86/entry: Remove syscall qualifier support
Syscall qualifier support is no longer needed. Signed-off-by: Brian Gerst <brgerst@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Dominik Brodowski <linux@dominikbrodowski.net> Link: https://lkml.kernel.org/r/20200313195144.164260-11-brgerst@gmail.com
Diffstat (limited to 'arch/x86/um/sys_call_table_32.c')
-rw-r--r--arch/x86/um/sys_call_table_32.c4
1 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 a0d75c560030..2ed81e581755 100644
--- a/arch/x86/um/sys_call_table_32.c
+++ b/arch/x86/um/sys_call_table_32.c
@@ -26,11 +26,11 @@
#define old_mmap sys_old_mmap
-#define __SYSCALL_I386(nr, sym, qual) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long) ;
+#define __SYSCALL_I386(nr, sym) extern asmlinkage long sym(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long) ;
#include <asm/syscalls_32.h>
#undef __SYSCALL_I386
-#define __SYSCALL_I386(nr, sym, qual) [ nr ] = sym,
+#define __SYSCALL_I386(nr, sym) [ nr ] = sym,
extern asmlinkage long sys_ni_syscall(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long);