mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-04 11:46:46 +07:00
0a9426df18
Signed-off-by: David Howells <dhowells@redhat.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Michael Kerrisk <mtk.manpages@gmail.com> Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com> Acked-by: Dave Jones <davej@redhat.com>
14 lines
268 B
C
14 lines
268 B
C
#ifndef __ASM_SH_PTRACE_32_H
|
|
#define __ASM_SH_PTRACE_32_H
|
|
|
|
#include <uapi/asm/ptrace_32.h>
|
|
|
|
|
|
#define MAX_REG_OFFSET offsetof(struct pt_regs, tra)
|
|
static inline long regs_return_value(struct pt_regs *regs)
|
|
{
|
|
return regs->regs[0];
|
|
}
|
|
|
|
#endif /* __ASM_SH_PTRACE_32_H */
|