浏览代码

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>
Simon Glass 9 年之前
父节点
当前提交
6e20650425
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      arch/sandbox/cpu/cpu.c

+ 1 - 1
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;