From aca0a504522ec2e5d077bf78a2acdb165f1e0ae2 Mon Sep 17 00:00:00 2001 From: Edmund Raile Date: Mon, 19 May 2025 11:24:23 +0000 Subject: [PATCH] vfio/igd: OpRegion not found fix error typo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Edmund Raile Reviewed-by: Tomita Moeko Reviewed-by: Cédric Le Goater Link: https://lore.kernel.org/qemu-devel/MFFbQoTpea_CK5ELq8oJ-a3Q57wo7ywQlrIqDvdIDKhUuCm59VUz2QzvdojO5r_wb_7SHifU0Kym3loj4eASPhdzYpjtiMCTePzyg1zrroo=@protonmail.com Signed-off-by: Cédric Le Goater --- hw/vfio/igd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/vfio/igd.c b/hw/vfio/igd.c index e7952d15a0..5b6341c5bf 100644 --- a/hw/vfio/igd.c +++ b/hw/vfio/igd.c @@ -203,7 +203,7 @@ static bool vfio_pci_igd_opregion_detect(VFIOPCIDevice *vdev, VFIO_REGION_SUBTYPE_INTEL_IGD_OPREGION, opregion); if (ret) { error_setg_errno(errp, -ret, - "Device does not supports IGD OpRegion feature"); + "Device does not support IGD OpRegion feature"); return false; } -- 2.39.5