| Submitter | Riccardo Magliocchetti |
|---|---|
| Date | May 19, 2010, 6:40 p.m. |
| Message ID | <b7c4928c6fbd9dfe1d150d05e3a1326db58cb851.1274282444.git.riccardo.magliocchetti@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/53007/ |
| State | New |
| Headers | show |
Comments
Patch
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,
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 <riccardo.magliocchetti@gmail.com> --- hw/e1000.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)