diff options
author | Jes Sorensen <Jes.Sorensen@redhat.com> | 2010-06-14 17:05:16 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-06-14 10:58:08 -0500 |
commit | ac7045cff7db837cfcc552bdc0f0baa15699f21a (patch) | |
tree | 288ef1b7811c2599444b54e25618680f90cf1bef /hw | |
parent | a4673e276248ada38f40d39191a197e7e35d3f8b (diff) | |
download | qemu-ac7045cff7db837cfcc552bdc0f0baa15699f21a.tar.gz qemu-ac7045cff7db837cfcc552bdc0f0baa15699f21a.tar.bz2 qemu-ac7045cff7db837cfcc552bdc0f0baa15699f21a.zip |
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 <Jes.Sorensen@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/msix.c | 9 |
1 files changed, 0 insertions, 9 deletions
@@ -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; |