From: Li Qiang Date: Tue, 21 May 2019 15:15:42 +0000 (-0700) Subject: vfio: platform: fix a typo X-Git-Tag: v4.1.0-rc0~94^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf04ef354c9d9d343d73d5dee0c0a62574a0e6bf;p=thirdparty%2Fqemu.git vfio: platform: fix a typo 'eventd' should be 'eventfd'. CC: qemu-trivial@nongnu.org Signed-off-by: Li Qiang Message-Id: <20190521151543.92274-4-liq3ea@163.com> Acked-by: Alex Williamson Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Eric Auger Signed-off-by: Laurent Vivier --- diff --git a/hw/vfio/platform.c b/hw/vfio/platform.c index e59a0234dd8..d52d6552e08 100644 --- a/hw/vfio/platform.c +++ b/hw/vfio/platform.c @@ -72,7 +72,7 @@ static VFIOINTp *vfio_init_intp(VFIODevice *vbasedev, g_free(intp->interrupt); g_free(intp); error_setg_errno(errp, -ret, - "failed to initialize trigger eventd notifier"); + "failed to initialize trigger eventfd notifier"); return NULL; } if (vfio_irq_is_automasked(intp)) { @@ -84,7 +84,7 @@ static VFIOINTp *vfio_init_intp(VFIODevice *vbasedev, g_free(intp->unmask); g_free(intp); error_setg_errno(errp, -ret, - "failed to initialize resample eventd notifier"); + "failed to initialize resample eventfd notifier"); return NULL; } }