aboutsummaryrefslogtreecommitdiff
path: root/lib/libfdt_env.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libfdt_env.h')
-rw-r--r--lib/libfdt_env.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/libfdt_env.h b/lib/libfdt_env.h
new file mode 100644
index 0000000..166b558
--- /dev/null
+++ b/lib/libfdt_env.h
@@ -0,0 +1,17 @@
+#ifndef LIBFDT_ENV_H
+/* take over libfdt */
+#define LIBFDT_ENV_H
+
+#include <apos/types.h>
+#include <apos/string.h>
+
+typedef int16_t fdt16_t;
+typedef int32_t fdt32_t;
+typedef int64_t fdt64_t;
+
+#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 */