Change #define DEBUG to #define E1000_DEBUG in hw/e1000.c Change #define DEBUG to #define E1000_DEBUG in hw/e1000.c to make it possible to build QEMU with -DDEBUG Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff --git a/hw/e1000.c b/hw/e1000.c index 96d045d..0da65f9 100644 --- a/hw/e1000.c +++ b/hw/e1000.c
@@ -33,9 +33,9 @@ #include "e1000_hw.h" -#define DEBUG +#define E1000_DEBUG -#ifdef DEBUG +#ifdef E1000_DEBUG enum { DEBUG_GENERAL, DEBUG_IO, DEBUG_MMIO, DEBUG_INTERRUPT, DEBUG_RX, DEBUG_TX, DEBUG_MDIC, DEBUG_EEPROM,