From 271248886e6110b4af0545f6a2d3ef38217cd58f Mon Sep 17 00:00:00 2001 From: Jes Sorensen Date: Mon, 14 Jun 2010 17:05:17 +0200 Subject: [PATCH] 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 Signed-off-by: Anthony Liguori --- hw/e1000.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/e1000.c b/hw/e1000.c index 96d045d209..0da65f9a34 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, -- 2.11.4.GIT