From: Jes Sorensen Date: Mon, 14 Jun 2010 15:05:16 +0000 (+0200) Subject: Remove unused DEBUG defines from hw/msix.c X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ac7045cff7db837cfcc552bdc0f0baa15699f21a;p=qemu.git Remove unused DEBUG defines from hw/msix.c Remove unused DEBUG defines from hw/msix.c to avoid having anything define the word DEBUG without any additions such as MSIX_DEBUG. Signed-off-by: Jes Sorensen Signed-off-by: Anthony Liguori --- diff --git a/hw/msix.c b/hw/msix.c index 1613bb4f11..d99403a0e9 100644 --- a/hw/msix.c +++ b/hw/msix.c @@ -42,15 +42,6 @@ #define MSIX_MAX_ENTRIES 32 -#ifdef MSIX_DEBUG -#define DEBUG(fmt, ...) \ - do { \ - fprintf(stderr, "%s: " fmt, __func__ , __VA_ARGS__); \ - } while (0) -#else -#define DEBUG(fmt, ...) do { } while(0) -#endif - /* Flag for interrupt controller to declare MSI-X support */ int msix_supported;