From: Peter Maydell Date: Thu, 25 Jun 2020 10:08:11 +0000 (+0100) Subject: hw/virtio/virtio-iommu-pci.c: Fix typo in error message X-Git-Tag: qemu-xen-4.15.0~107^2~26 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=590090b4e6aa8df53c20792ce20c8684b83c51a9;p=qemu-xen.git hw/virtio/virtio-iommu-pci.c: Fix typo in error message Fix a typo in an error message in virtio_iommu_pci_realize(): "Check you machine" should be "Check your machine". Reported-by: Markus Armbruster Signed-off-by: Peter Maydell Message-Id: <20200625100811.12690-1-peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Eric Auger Signed-off-by: Markus Armbruster --- diff --git a/hw/virtio/virtio-iommu-pci.c b/hw/virtio/virtio-iommu-pci.c index 632533abaf..32e3215d1d 100644 --- a/hw/virtio/virtio-iommu-pci.c +++ b/hw/virtio/virtio-iommu-pci.c @@ -48,7 +48,7 @@ static void virtio_iommu_pci_realize(VirtIOPCIProxy *vpci_dev, Error **errp) "%s machine fails to create iommu-map device tree bindings", mc->name); error_append_hint(errp, - "Check you machine implements a hotplug handler " + "Check your machine implements a hotplug handler " "for the virtio-iommu-pci device\n"); error_append_hint(errp, "Check the guest is booted without FW or with " "-no-acpi\n");