diff options
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 624a1e165..65a274f84 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))) |