summary refs log tree commit diff stats
path: root/hw/vfio/platform.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2016-08-03 13:37:53 +0200
committerMarkus Armbruster <armbru@redhat.com>2016-08-08 09:01:18 +0200
commitfea1c0999a67217207ece63a25ed88c796c19515 (patch)
treea4fa5237202efbafd47c84bce9a9365acfc73c2a /hw/vfio/platform.c
parenta47eb010983b98d41330878f8b3e3193da40e6ed (diff)
downloadfocaccia-qemu-fea1c0999a67217207ece63a25ed88c796c19515.tar.gz
focaccia-qemu-fea1c0999a67217207ece63a25ed88c796c19515.zip
vfio: Use error_report() instead of error_printf() for errors
Cc: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <1470224274-31522-4-git-send-email-armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'hw/vfio/platform.c')
-rw-r--r--hw/vfio/platform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vfio/platform.c b/hw/vfio/platform.c
index 1798a00a3f..a559e7b659 100644
--- a/hw/vfio/platform.c
+++ b/hw/vfio/platform.c
@@ -496,7 +496,7 @@ static int vfio_populate_device(VFIODevice *vbasedev)
         irq.index = i;
         ret = ioctl(vbasedev->fd, VFIO_DEVICE_GET_IRQ_INFO, &irq);
         if (ret) {
-            error_printf("vfio: error getting device %s irq info",
+            error_report("vfio: error getting device %s irq info",
                          vbasedev->name);
             goto irq_err;
         } else {