qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] eepro100: fix compile warning


From: Wanlong Gao
Subject: [Qemu-devel] [PATCH] eepro100: fix compile warning
Date: Wed, 19 Jun 2013 11:12:41 +0800

hw/net/eepro100.c:108:0: error: "BIT" redefined [-Werror]
In file included from /work/git/qemu/include/qemu/bitmap.h:16:0,
                 from /work/git/qemu/include/sysemu/sysemu.h:12,
                 from hw/net/eepro100.c:48:
/work/git/qemu/include/qemu/bitops.h:21:0: note: this is the location of the 
previous definition
cc1: all warnings being treated as errors
make: *** [hw/net/eepro100.o] Error 1

Signed-off-by: Wanlong Gao <address@hidden>
---
 hw/net/eepro100.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/hw/net/eepro100.c b/hw/net/eepro100.c
index dc99ea6..478c688 100644
--- a/hw/net/eepro100.c
+++ b/hw/net/eepro100.c
@@ -105,7 +105,6 @@
 #define PCI_IO_SIZE             64
 #define PCI_FLASH_SIZE          (128 * KiB)
 
-#define BIT(n) (1 << (n))
 #define BITS(n, m) (((0xffffffffU << (31 - n)) >> (31 - n + m)) << m)
 
 /* The SCB accepts the following controls for the Tx and Rx units: */
-- 
1.8.3.rc2.10.g0c2b1cf




reply via email to

[Prev in Thread] Current Thread [Next in Thread]