From: Bartlomiej Sieka Date: Thu, 27 Mar 2008 14:06:40 +0000 (+0100) Subject: Fix host tool build breakage, take two X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=74d1e66d22dac91388bc538b2fe19f735edc5b82;p=project%2Fbcm63xx%2Fu-boot.git Fix host tool build breakage, take two Revert commit 87c8431f and fix build breakage so that the build continues to work on FC systems. Signed-off-by: Bartlomiej Sieka --- diff --git a/include/fdt.h b/include/fdt.h index 39beada630..48ccfd9100 100644 --- a/include/fdt.h +++ b/include/fdt.h @@ -3,10 +3,6 @@ #ifndef __ASSEMBLY__ -#ifdef USE_HOSTCC -#include -#endif - struct fdt_header { uint32_t magic; /* magic word FDT_MAGIC */ uint32_t totalsize; /* total size of DT block */ diff --git a/include/libfdt_env.h b/include/libfdt_env.h index 98c522ae42..ab5c3012db 100644 --- a/include/libfdt_env.h +++ b/include/libfdt_env.h @@ -21,15 +21,16 @@ #ifndef _LIBFDT_ENV_H #define _LIBFDT_ENV_H -#include -#include -#include #ifdef USE_HOSTCC +#include #include #else #include +#include #endif /* USE_HOSTCC */ +#include +#include extern struct fdt_header *fdt; /* Pointer to the working fdt */ #define fdt32_to_cpu(x) __be32_to_cpu(x)