浏览代码

Correct includes for flat tree builder.

Marian Balakowicz 19 年之前
父节点
当前提交
fe93483a0a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      common/ft_build.c

+ 2 - 2
common/ft_build.c

@@ -6,13 +6,13 @@
 #include <malloc.h>
 #include <environment.h>
 
+#ifdef CONFIG_OF_FLAT_TREE
+
 #include <asm/errno.h>
 #include <stddef.h>
 
 #include <ft_build.h>
 
-#ifdef CONFIG_OF_FLAT_TREE
-
 /* align addr on a size boundary - adjust address up if needed -- Cort */
 #define _ALIGN(addr,size)       (((addr)+(size)-1)&(~((size)-1)))