From patchwork Wed May 19 18:40:20 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3/3] Rename DEBUG define to E1000_DEBUG to avoid name clashes From: Riccardo Magliocchetti X-Patchwork-Id: 53007 Message-Id: To: qemu-devel@nongnu.org Cc: Riccardo Magliocchetti Date: Wed, 19 May 2010 20:40:20 +0200 Some files use DEBUG as a preprocessor conditionals to enable debug code and i find handy to pass -DDEBUG as extra cflags at configure time. Unfortunately this cannot be done if DEBUG name is used for other purposes. Signed-off-by: Riccardo Magliocchetti --- 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,