xref: /openbmc/u-boot/arch/sandbox/include/asm/ptrace.h (revision e8f80a5a)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  */
5 
6 #ifndef __ASM_SANDBOX_PTRACE_H
7 #define __ASM_SANDBOX_PTRACE_H
8 
9 #ifndef __ASSEMBLY__
10 /* This is not used in the sandbox architecture, but required by U-Boot */
11 struct pt_regs {
12 };
13 
14 #ifdef __KERNEL__
15 extern void show_regs(struct pt_regs *);
16 
17 #endif
18 
19 #endif /* __ASSEMBLY__ */
20 
21 #endif
22