commit | be3103753b285d12568bfc23b733025087744870 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Mon Jul 04 11:57:47 2016 -0600 |
committer | Simon Glass <sjg@chromium.org> | Thu Jul 14 20:40:24 2016 -0600 |
tree | e4a799458371db8cfb1675a6d91da2ed69b8201d | |
parent | 1a3ba62e15754dde448df43302802e8b8232ebe4 [diff] |
sandbox: Correct header file order in cpu.c The dm/ file should go at the end. Move it. Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/arch/sandbox/cpu/cpu.c b/arch/sandbox/cpu/cpu.c index 196f3e1..7a622c8 100644 --- a/arch/sandbox/cpu/cpu.c +++ b/arch/sandbox/cpu/cpu.c
@@ -4,10 +4,10 @@ */ #define DEBUG #include <common.h> -#include <dm/root.h> #include <os.h> #include <asm/io.h> #include <asm/state.h> +#include <dm/root.h> DECLARE_GLOBAL_DATA_PTR;