diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:06 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 21:19:23 -0400 |
commit | 25a5818ff8f17420982e682c4282fcfe8405385e (patch) | |
tree | 6708091a5afd82a3b1c355f2ba2ab1ea74259fa9 /common | |
parent | f7ae49fc4f363a803dab3be078e93ead8e75a8e9 (diff) |
common: Drop asm/ptrace.h from common header
Move this uncommon header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/bedbug.c | 1 | ||||
-rw-r--r-- | common/kgdb.c | 1 | ||||
-rw-r--r-- | common/kgdb_stubs.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/common/bedbug.c b/common/bedbug.c index 42ecf61eff..18a35ca23e 100644 --- a/common/bedbug.c +++ b/common/bedbug.c @@ -1,6 +1,7 @@ /* $Id$ */ #include <common.h> +#include <asm/ptrace.h> #include <linux/ctype.h> #include <bedbug/bedbug.h> diff --git a/common/kgdb.c b/common/kgdb.c index 312e14960a..4493a15919 100644 --- a/common/kgdb.c +++ b/common/kgdb.c @@ -88,6 +88,7 @@ ****************************************************************************/ #include <common.h> +#include <asm/ptrace.h> #include <kgdb.h> #include <command.h> diff --git a/common/kgdb_stubs.c b/common/kgdb_stubs.c index c061126bed..66aed7cea1 100644 --- a/common/kgdb_stubs.c +++ b/common/kgdb_stubs.c @@ -11,6 +11,7 @@ #include <cpu_func.h> #include <kgdb.h> #include <serial.h> +#include <asm/ptrace.h> int (*debugger_exception_handler)(struct pt_regs *); |