aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/syscall_wrapper.h
diff options
context:
space:
mode:
authorBrian Gerst <brgerst@gmail.com>2020-03-24 10:35:20 -0400
committerThomas Gleixner <tglx@linutronix.de>2020-03-25 10:06:20 +0100
commit290a4474d019c7e49c186100e157fff5e273ab3b (patch)
treefb19fbf177cdbff64591d4f447a4153c3445ef15 /arch/x86/include/asm/syscall_wrapper.h
parentlockdep: Rename trace_{hard,soft}{irq_context,irqs_enabled}() (diff)
downloadlinux-dev-290a4474d019c7e49c186100e157fff5e273ab3b.tar.xz
linux-dev-290a4474d019c7e49c186100e157fff5e273ab3b.zip
x86/entry: Fix build error x86 with !CONFIG_POSIX_TIMERS
Add missing semicolon. Fixes: a74d187c2df3 ("x86/entry: Refactor SYS_NI macros") Reported-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Brian Gerst <brgerst@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lkml.kernel.org/r/20200324143520.898733-1-brgerst@gmail.com
Diffstat (limited to 'arch/x86/include/asm/syscall_wrapper.h')
-rw-r--r--arch/x86/include/asm/syscall_wrapper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/syscall_wrapper.h b/arch/x86/include/asm/syscall_wrapper.h
index e10efa1454bc..a84333adeef2 100644
--- a/arch/x86/include/asm/syscall_wrapper.h
+++ b/arch/x86/include/asm/syscall_wrapper.h
@@ -86,7 +86,7 @@ extern long __ia32_sys_ni_syscall(const struct pt_regs *regs);
}
#define __SYS_NI(abi, name) \
- SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers)
+ SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers);
#ifdef CONFIG_X86_64
#define __X64_SYS_STUB0(name) \