diff options
author | Marian Balakowicz <m8@semihalf.com> | 2005-10-28 18:08:03 +0200 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2005-10-28 18:08:03 +0200 |
commit | fe93483a0ab9dcbf7794ffbf0b029ba138380e81 (patch) | |
tree | f925d8755f613f4d73cdc4ef4f56ca4a05dc270e /common/ft_build.c | |
parent | 170d5e6d4cb91ff5eaccf1779918567dc1c2cb00 (diff) | |
download | u-boot-fe93483a0ab9dcbf7794ffbf0b029ba138380e81.tar.gz u-boot-fe93483a0ab9dcbf7794ffbf0b029ba138380e81.tar.xz u-boot-fe93483a0ab9dcbf7794ffbf0b029ba138380e81.zip |
Correct includes for flat tree builder.
Diffstat (limited to 'common/ft_build.c')
-rw-r--r-- | common/ft_build.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/ft_build.c b/common/ft_build.c index 624a1e1659..65a274f840 100644 --- a/common/ft_build.c +++ b/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))) |