aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorAlex Williamson <alex.williamson@redhat.com>2012-10-17 11:20:11 -0600
committerAlex Williamson <alex.williamson@redhat.com>2012-10-17 11:20:11 -0600
commita011b10e0c385c58469e654595801a592fb4137a (patch)
tree918105452e8db8ca97bc5b15c3650f3be963aac4 /hw
parent1414968a6aecd23cb037bc9e718d6f05ead2afaf (diff)
downloadqemu-a011b10e0c385c58469e654595801a592fb4137a.zip
qemu-a011b10e0c385c58469e654595801a592fb4137a.tar.gz
qemu-a011b10e0c385c58469e654595801a592fb4137a.tar.bz2
vfio-pci: Fix debug build
Stray variable from before MSI-X rework Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/vfio_pci.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/vfio_pci.c b/hw/vfio_pci.c
index 639371e..0619af4 100644
--- a/hw/vfio_pci.c
+++ b/hw/vfio_pci.c
@@ -639,9 +639,8 @@ static void vfio_disable_msix(VFIODevice *vdev)
vfio_disable_msi_common(vdev);
- DPRINTF("%s(%04x:%02x:%02x.%x, msi%s)\n", __func__,
- vdev->host.domain, vdev->host.bus, vdev->host.slot,
- vdev->host.function, msix ? "x" : "");
+ DPRINTF("%s(%04x:%02x:%02x.%x)\n", __func__, vdev->host.domain,
+ vdev->host.bus, vdev->host.slot, vdev->host.function);
}
static void vfio_disable_msi(VFIODevice *vdev)