From: Edmund Raile Date: Mon, 19 May 2025 11:24:23 +0000 (+0000) Subject: vfio/igd: OpRegion not found fix error typo X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aca0a504522ec2e5d077bf78a2acdb165f1e0ae2;p=thirdparty%2Fqemu.git vfio/igd: OpRegion not found fix error typo 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 --- 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; }