diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2010-06-14 17:05:17 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-06-14 10:58:08 -0500 |
commit | 271248886e6110b4af0545f6a2d3ef38217cd58f (patch) | |
tree | 0022fbb7f85ab1dc2a01270038e0d93301023fd0 /hw/e1000.c | |
parent | ac7045cff7db837cfcc552bdc0f0baa15699f21a (diff) |
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>
Diffstat (limited to 'hw/e1000.c')
-rw-r--r-- | hw/e1000.c | 4 |
1 files 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, |