[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 06/10] Fix libfdt warnings on Darwin
From: |
Andreas Färber |
Subject: |
[Qemu-devel] [PATCH 06/10] Fix libfdt warnings on Darwin |
Date: |
Tue, 14 Jun 2011 03:22:03 +0200 |
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 <address@hidden>
Signed-off-by: Andreas Färber <address@hidden>
Acked-by: Alexander Graf <address@hidden>
---
libfdt_env.h | 8 ++------
1 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/libfdt_env.h b/libfdt_env.h
index ee0419f..90d7f3b 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)
--
1.7.5.3
- [Qemu-devel] [PULL 00/10] Fixes for Cocoa backend, Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 01/10] cocoa: do not create a spurious window for -version, Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 02/10] Fix compilation warning due to incorrectly specified type, Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 03/10] Cocoa: avoid displaying window when command-line contains '-h' or '-help', Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 04/10] Remove warning in printf due to type mismatch, Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 05/10] configure: Fix check for fdatasync(), Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 06/10] Fix libfdt warnings on Darwin,
Andreas Färber <=
- [Qemu-devel] [PATCH 07/10] cocoa: Provide central qemu_main() prototype, Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 08/10] cocoa: Revert dependency on VNC, Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 09/10] cocoa: Avoid warning related to multiple handleEvent: definitions, Andreas Färber, 2011/06/13
- [Qemu-devel] [PATCH 10/10] Darwin: Fix compilation warning regarding the deprecated daemon() function, Andreas Färber, 2011/06/13
- Re: [Qemu-devel] [PATCH 08/10] cocoa: Revert dependency on VNC, Jes Sorensen, 2011/06/27
Re: [Qemu-devel] [PULL 00/10] Fixes for Cocoa backend, Blue Swirl, 2011/06/15