Skip to content

Commit 290a447

Browse files
Brian GerstKAGA-KOKO
authored andcommitted
x86/entry: Fix build error x86 with !CONFIG_POSIX_TIMERS
Add missing semicolon. Fixes: a74d187 ("x86/entry: Refactor SYS_NI macros") Reported-by: Ingo Molnar <[email protected]> Signed-off-by: Brian Gerst <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Link: https://lkml.kernel.org/r/[email protected]
1 parent ef99691 commit 290a447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/include/asm/syscall_wrapper.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ extern long __ia32_sys_ni_syscall(const struct pt_regs *regs);
8686
}
8787

8888
#define __SYS_NI(abi, name) \
89-
SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers)
89+
SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers);
9090

9191
#ifdef CONFIG_X86_64
9292
#define __X64_SYS_STUB0(name) \

0 commit comments

Comments
 (0)