aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Straub <lukasstraub2@web.de>2022-08-26 15:29:27 +0000
committerRichard Weinberger <richard@nod.at>2022-09-19 21:58:53 +0200
commit61670b4d270c71219def1fbc9441debc2ac2e6e9 (patch)
tree0c660251b3c08e5ef1feb58c4cdc1a10fdaacff9
parent521a547ced6477c54b4b0cc206000406c221b4d6 (diff)
downloadlinux-61670b4d270c71219def1fbc9441debc2ac2e6e9.tar.gz
um: Cleanup syscall_handler_t cast in syscalls_32.h
Like in f4f03f299a56ce4d73c5431e0327b3b6cb55ebb9 "um: Cleanup syscall_handler_t definition/cast, fix warning", remove the cast to to fix the compiler warning. Signed-off-by: Lukas Straub <lukasstraub2@web.de> Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested Signed-off-by: Richard Weinberger <richard@nod.at>
-rw-r--r--arch/x86/um/shared/sysdep/syscalls_32.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/um/shared/sysdep/syscalls_32.h b/arch/x86/um/shared/sysdep/syscalls_32.h
index 68fd2cf526fd7..f6e9f84397e79 100644
--- a/arch/x86/um/shared/sysdep/syscalls_32.h
+++ b/arch/x86/um/shared/sysdep/syscalls_32.h
@@ -6,10 +6,9 @@
#include <asm/unistd.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[];
#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))