提交 61670b4d 编写于 作者: L Lukas Straub 提交者: Richard Weinberger

um: Cleanup syscall_handler_t cast in syscalls_32.h

Like in f4f03f29
"um: Cleanup syscall_handler_t definition/cast, fix warning",
remove the cast to to fix the compiler warning.
Signed-off-by: NLukas Straub <lukasstraub2@web.de>
Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested
Signed-off-by: NRichard Weinberger <richard@nod.at>
上级 521a547c
...@@ -6,10 +6,9 @@ ...@@ -6,10 +6,9 @@
#include <asm/unistd.h> #include <asm/unistd.h>
#include <sysdep/ptrace.h> #include <sysdep/ptrace.h>
typedef long syscall_handler_t(struct pt_regs); typedef long syscall_handler_t(struct syscall_args);
extern syscall_handler_t *sys_call_table[]; extern syscall_handler_t *sys_call_table[];
#define EXECUTE_SYSCALL(syscall, regs) \ #define EXECUTE_SYSCALL(syscall, regs) \
((long (*)(struct syscall_args)) \ ((*sys_call_table[syscall]))(SYSCALL_ARGS(&regs->regs))
(*sys_call_table[syscall]))(SYSCALL_ARGS(&regs->regs))
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册