diff mbox

[U-Boot,07/31] sandbox: Correct header file order in cpu.c

Message ID 1465354089-3508-8-git-send-email-sjg@chromium.org
State Accepted
Commit 6e20650425842244603380c275e7d7701305d2a0
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass June 8, 2016, 2:47 a.m. UTC
The dm/ file should go at the end. Move it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 arch/sandbox/cpu/cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

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;