X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fimage.h;h=beb3a16cd1f18e966aaa01750ae6fdbc8cb56d85;hb=84efbf4d144ff8aaed3cca036aebb1fe69eff3f4;hp=74a1240069927220947bf6075deffe806bcf3b63;hpb=f05fa9205e04986176dc7ab8b710bcb5fbe9f338;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/image.h b/include/image.h index 74a1240..beb3a16 100644 --- a/include/image.h +++ b/include/image.h @@ -33,8 +33,9 @@ #ifndef __IMAGE_H__ #define __IMAGE_H__ -#if USE_HOSTCC -#include +#include "compiler.h" + +#ifdef USE_HOSTCC /* new uImage format support enabled on host */ #define CONFIG_FIT 1 @@ -44,9 +45,7 @@ #else #include -#include #include -#include #endif /* USE_HOSTCC */ @@ -282,8 +281,8 @@ typedef struct bootm_headers { #define CHUNKSZ_SHA1 (64 * 1024) #endif -#define uimage_to_cpu(x) ntohl(x) -#define cpu_to_uimage(x) htonl(x) +#define uimage_to_cpu(x) be32_to_cpu(x) +#define cpu_to_uimage(x) cpu_to_be32(x) const char *genimg_get_os_name (uint8_t os); const char *genimg_get_arch_name (uint8_t arch);