commit | 141e5a0047332406b6ad3e39c9030882af6c952e | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Mon Jul 04 11:57:48 2016 -0600 |
committer | Simon Glass <sjg@chromium.org> | Thu Jul 14 20:40:24 2016 -0600 |
tree | 97df3b8eab9dd7d5c185f079081057c40a788d69 | |
parent | be3103753b285d12568bfc23b733025087744870 [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>
diff --git a/arch/sandbox/cpu/cpu.c b/arch/sandbox/cpu/cpu.c index 7a622c8..4975eb2 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>