summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Färber <andreas.faerber@web.de>2011-05-28 15:45:18 +0200
committerAndreas Färber <andreas.faerber@web.de>2011-06-14 03:08:57 +0200
commitd3922ab5fa791ac1546140f2a8df86d632d8fd6a (patch)
tree0562815dd7bb6ae8d4742683be68c5a8b39c078e /libfdt_env.h
parentconfigure: Fix check for fdatasync() (diff)
downloadqemu-kvm-d3922ab5fa791ac1546140f2a8df86d632d8fd6a.tar.gz
qemu-kvm-d3922ab5fa791ac1546140f2a8df86d632d8fd6a.tar.bz2
qemu-kvm-d3922ab5fa791ac1546140f2a8df86d632d8fd6a.zip
Fix libfdt warnings on Darwin
Building with libfdt results in the following warnings on Mac OS X: CC ppc-softmmu/device_tree.o In file included from /Users/andreas/QEMU/latest64/include/libfdt.h:54, from /Users/andreas/QEMU/qemu/device_tree.c:26: /Users/andreas/QEMU/qemu/libfdt_env.h:25:20: warning: endian.h: No such file or directory /Users/andreas/QEMU/qemu/libfdt_env.h:26:22: warning: byteswap.h: No such file or directory /Users/andreas/QEMU/qemu/libfdt_env.h:28:5: warning: "__BYTE_ORDER" is not defined /Users/andreas/QEMU/qemu/libfdt_env.h:28:21: warning: "__BIG_ENDIAN" is not defined Since QEMU's copy of libfdt_env.h only uses bswap_32() and bswap_64(), let QEMU's bswap.h take care of the headers and use its endianness define. Cc: Hollis Blanchard <hollis@penguinppc.org> Signed-off-by: Andreas Färber <andreas.faerber@web.de> Acked-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'libfdt_env.h')
-rw-r--r--libfdt_env.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/libfdt_env.h b/libfdt_env.h
index ee0419f7c..90d7f3b16 100644
--- a/libfdt_env.h
+++ b/libfdt_env.h
@@ -19,13 +19,9 @@
#ifndef _LIBFDT_ENV_H
#define _LIBFDT_ENV_H
-#include <stddef.h>
-#include <stdint.h>
-#include <string.h>
-#include <endian.h>
-#include <byteswap.h>
+#include "bswap.h"
-#if __BYTE_ORDER == __BIG_ENDIAN
+#ifdef HOST_WORDS_BIGENDIAN
#define fdt32_to_cpu(x) (x)
#define cpu_to_fdt32(x) (x)
#define fdt64_to_cpu(x) (x)