diff options
author | Bandan Das <bsd@redhat.com> | 2014-01-28 08:23:19 -0700 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2014-01-28 08:23:19 -0700 |
commit | 8b6d14087d487203f4d1a67aeaddc3be6c73f49f (patch) | |
tree | db18063efdbcd8ad06945c0c040bf846ea4e91b9 /hw/misc | |
parent | 8d7b5a1da0e06aa7addd7f084d9ec9d433c4bafb (diff) | |
download | qemu-8b6d14087d487203f4d1a67aeaddc3be6c73f49f.zip qemu-8b6d14087d487203f4d1a67aeaddc3be6c73f49f.tar.gz qemu-8b6d14087d487203f4d1a67aeaddc3be6c73f49f.tar.bz2 |
vfio: correct debug macro typo
Change to DEBUG_VFIO in vfio_msi_interrupt() for debug
messages to get printed
Signed-off-by: Bandan Das <bsd@redhat.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw/misc')
-rw-r--r-- | hw/misc/vfio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/misc/vfio.c b/hw/misc/vfio.c index 8a1f1a1..8db182f 100644 --- a/hw/misc/vfio.c +++ b/hw/misc/vfio.c @@ -599,7 +599,7 @@ static void vfio_msi_interrupt(void *opaque) return; } -#ifdef VFIO_DEBUG +#ifdef DEBUG_VFIO MSIMessage msg; if (vdev->interrupt == VFIO_INT_MSIX) { |