projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef99691
)
x86/entry: Fix build error x86 with !CONFIG_POSIX_TIMERS
author
Brian Gerst
<brgerst@gmail.com>
Tue, 24 Mar 2020 14:35:20 +0000
(10:35 -0400)
committer
Thomas Gleixner
<tglx@linutronix.de>
Wed, 25 Mar 2020 09:06:20 +0000
(10:06 +0100)
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
arch/x86/include/asm/syscall_wrapper.h
patch
|
blob
|
history
diff --git
a/arch/x86/include/asm/syscall_wrapper.h
b/arch/x86/include/asm/syscall_wrapper.h
index e10efa1454bcf6e93d59154d731ef713a18d0207..a84333adeef232aa4d38f10d8ec1af7c1155ddb7 100644
(file)
--- 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) \