From patchwork Mon Jun 14 15:05:17 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/2] Change #define DEBUG to #define E1000_DEBUG in hw/e1000.c Date: Mon, 14 Jun 2010 05:05:17 -0000 From: Jes Sorensen X-Patchwork-Id: 55546 Message-Id: <1276527917-24703-3-git-send-email-Jes.Sorensen@redhat.com> To: anthony@codemonkey.ws Cc: dprotti@flowgate.net, Jes Sorensen , qemu-devel@nongnu.org, mst@redhat.com From: Jes Sorensen 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 --- hw/e1000.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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,