Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 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 |