* [PATCH] vfio/igd: OpRegion not found fix error typo
@ 2025-05-19 11:24 edmund.raile via
2025-05-19 12:25 ` Cédric Le Goater
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: edmund.raile via @ 2025-05-19 11:24 UTC (permalink / raw)
To: clg@redhat.com, tomitamoeko@gmail.com, alex.williamson@redhat.com
Cc: qemu-devel@nongnu.org, edmund.raile@proton.me
Signed-off-by: Edmund Raile <edmund.raile@protonmail.com>
---
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 e54a2a2f00..36ceb85212 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.49.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] vfio/igd: OpRegion not found fix error typo
2025-05-19 11:24 [PATCH] vfio/igd: OpRegion not found fix error typo edmund.raile via
@ 2025-05-19 12:25 ` Cédric Le Goater
2025-05-19 15:09 ` Tomita Moeko
2025-05-21 10:30 ` Cédric Le Goater
2 siblings, 0 replies; 4+ messages in thread
From: Cédric Le Goater @ 2025-05-19 12:25 UTC (permalink / raw)
To: edmund.raile, tomitamoeko@gmail.com, alex.williamson@redhat.com
Cc: qemu-devel@nongnu.org, edmund.raile@proton.me
On 5/19/25 13:24, edmund.raile wrote:
> Signed-off-by: Edmund Raile <edmund.raile@protonmail.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Thanks,
C.
> ---
> 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 e54a2a2f00..36ceb85212 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;
> }
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] vfio/igd: OpRegion not found fix error typo
2025-05-19 11:24 [PATCH] vfio/igd: OpRegion not found fix error typo edmund.raile via
2025-05-19 12:25 ` Cédric Le Goater
@ 2025-05-19 15:09 ` Tomita Moeko
2025-05-21 10:30 ` Cédric Le Goater
2 siblings, 0 replies; 4+ messages in thread
From: Tomita Moeko @ 2025-05-19 15:09 UTC (permalink / raw)
To: edmund.raile, clg@redhat.com, alex.williamson@redhat.com
Cc: qemu-devel@nongnu.org, edmund.raile@proton.me
On 5/19/25 19:24, edmund.raile wrote:
> Signed-off-by: Edmund Raile <edmund.raile@protonmail.com>
> ---
> 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 e54a2a2f00..36ceb85212 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;
> }
>
Reviewed-by: Tomita Moeko <tomitamoeko@gmail.com>
Thank you for your contribution!
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] vfio/igd: OpRegion not found fix error typo
2025-05-19 11:24 [PATCH] vfio/igd: OpRegion not found fix error typo edmund.raile via
2025-05-19 12:25 ` Cédric Le Goater
2025-05-19 15:09 ` Tomita Moeko
@ 2025-05-21 10:30 ` Cédric Le Goater
2 siblings, 0 replies; 4+ messages in thread
From: Cédric Le Goater @ 2025-05-21 10:30 UTC (permalink / raw)
To: edmund.raile, tomitamoeko@gmail.com, alex.williamson@redhat.com
Cc: qemu-devel@nongnu.org, edmund.raile@proton.me
On 5/19/25 13:24, edmund.raile wrote:
> Signed-off-by: Edmund Raile <edmund.raile@protonmail.com>
> ---
> 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 e54a2a2f00..36ceb85212 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;
> }
>
Applied to vfio-next.
Thanks,
C.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-05-21 10:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-19 11:24 [PATCH] vfio/igd: OpRegion not found fix error typo edmund.raile via
2025-05-19 12:25 ` Cédric Le Goater
2025-05-19 15:09 ` Tomita Moeko
2025-05-21 10:30 ` Cédric Le Goater
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).