Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 The Chromium OS Authors. |
| 3 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 744d985 | 2011-10-10 08:22:14 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __ASM_SANDBOX_PTRACE_H |
| 8 | #define __ASM_SANDBOX_PTRACE_H |
| 9 | |
| 10 | #ifndef __ASSEMBLY__ |
| 11 | /* This is not used in the sandbox architecture, but required by U-Boot */ |
| 12 | struct pt_regs { |
| 13 | }; |
| 14 | |
| 15 | #ifdef __KERNEL__ |
| 16 | extern void show_regs(struct pt_regs *); |
| 17 | |
| 18 | #endif |
| 19 | |
| 20 | #endif /* __ASSEMBLY__ */ |
| 21 | |
| 22 | #endif |