blob: 78e58173f6fb83fab3c0633417dc4cbb1b7a190e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass744d9852011-10-10 08:22:14 +00002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Simon Glass744d9852011-10-10 08:22:14 +00004 */
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 */
11struct pt_regs {
12};
13
14#ifdef __KERNEL__
15extern void show_regs(struct pt_regs *);
16
17#endif
18
19#endif /* __ASSEMBLY__ */
20
21#endif