diff options
author | Simon Glass | 2016-07-04 11:57:48 -0600 |
---|---|---|
committer | Simon Glass | 2016-07-14 20:40:24 -0600 |
commit | f4289cbd8a8d607399b507cb695b46cd771d6c1b (patch) | |
tree | 97df3b8eab9dd7d5c185f079081057c40a788d69 /arch/sandbox/cpu | |
parent | 6e20650425842244603380c275e7d7701305d2a0 (diff) |
sandbox: Add some missing headers in cpu.c
These headers are needed in case they are not transitively included.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/cpu')
-rw-r--r-- | arch/sandbox/cpu/cpu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sandbox/cpu/cpu.c b/arch/sandbox/cpu/cpu.c index 7a622c8092d..4975eb288ce 100644 --- a/arch/sandbox/cpu/cpu.c +++ b/arch/sandbox/cpu/cpu.c @@ -4,6 +4,8 @@ */ #define DEBUG #include <common.h> +#include <errno.h> +#include <libfdt.h> #include <os.h> #include <asm/io.h> #include <asm/state.h> |