mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-13 14:06:43 +07:00
e7b8e675d9
Most implementations of arch_syscall_addr() are the same, so create a default version in common code and move the one piece that differs (the syscall table) to asm/syscall.h. New arch ports don't have to waste time copying & pasting this simple function. The s390/sparc versions need to be different, so document why. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: David S. Miller <davem@davemloft.net> Acked-by: Paul Mundt <lethal@linux-sh.org> Acked-by: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: Steven Rostedt <rostedt@goodmis.org> LKML-Reference: <1264498803-17278-1-git-send-email-vapier@gentoo.org> Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
13 lines
220 B
C
13 lines
220 B
C
#ifndef __ASM_SH_SYSCALL_H
|
|
#define __ASM_SH_SYSCALL_H
|
|
|
|
extern const unsigned long sys_call_table[];
|
|
|
|
#ifdef CONFIG_SUPERH32
|
|
# include "syscall_32.h"
|
|
#else
|
|
# include "syscall_64.h"
|
|
#endif
|
|
|
|
#endif /* __ASM_SH_SYSCALL_H */
|