aboutsummaryrefslogtreecommitdiff
path: root/include/libfdt_env.h
diff options
context:
space:
mode:
authorGerald Van Baren <vanbaren@cideas.com>2007-03-31 12:05:39 -0400
committerGerald Van Baren <vanbaren@cideas.com>2007-03-31 12:05:39 -0400
commitfa3a74cec73dfd06a5ae35a9a3368200273aaa71 (patch)
tree306a878689e6d2795eff4b6b2e19098957f49cf6 /include/libfdt_env.h
parent35748177c64a4a83a00057e93bb33e40278a2a96 (diff)
libfdt: Customizations for use by u-boot.
Changes to David Gibson's original source to fit into u-boot's environment. No functionality changes.
Diffstat (limited to 'include/libfdt_env.h')
-rw-r--r--include/libfdt_env.h24
1 files changed, 9 insertions, 15 deletions
diff --git a/include/libfdt_env.h b/include/libfdt_env.h
index 59f2536d2..6c7785254 100644
--- a/include/libfdt_env.h
+++ b/include/libfdt_env.h
@@ -2,21 +2,15 @@
#define _LIBFDT_ENV_H
#include <stddef.h>
-#include <stdint.h>
-#include <string.h>
-#include <endian.h>
-#include <byteswap.h>
+#include <linux/types.h>
+#include <asm/byteorder.h>
+#include <linux/string.h>
-#if __BYTE_ORDER == __BIG_ENDIAN
-#define fdt32_to_cpu(x) (x)
-#define cpu_to_fdt32(x) (x)
-#define fdt64_to_cpu(x) (x)
-#define cpu_to_fdt64(x) (x)
-#else
-#define fdt32_to_cpu(x) (bswap_32((x)))
-#define cpu_to_fdt32(x) (bswap_32((x)))
-#define fdt64_to_cpu(x) (bswap_64((x)))
-#define cpu_to_fdt64(x) (bswap_64((x)))
-#endif
+struct fdt_header *fdt; /* Pointer to the working fdt */
+
+#define fdt32_to_cpu(x) __be32_to_cpu(x)
+#define cpu_to_fdt32(x) __cpu_to_be32(x)
+#define fdt64_to_cpu(x) __be64_to_cpu(x)
+#define cpu_to_fdt64(x) __cpu_to_be64(x)
#endif /* _LIBFDT_ENV_H */