There are spelling mistakes in two ivpu_err error messages. Fix them.
Signed-off-by: Colin Ian King <[email protected]>
---
drivers/accel/ivpu/ivpu_hw_mtl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/accel/ivpu/ivpu_hw_mtl.c b/drivers/accel/ivpu/ivpu_hw_mtl.c
index b59b1f472b40..62bfaa9081c4 100644
--- a/drivers/accel/ivpu/ivpu_hw_mtl.c
+++ b/drivers/accel/ivpu/ivpu_hw_mtl.c
@@ -608,7 +608,7 @@ static int ivpu_boot_d0i3_drive(struct ivpu_device *vdev, bool enable)
ret = REGB_POLL_FLD(MTL_BUTTRESS_VPU_D0I3_CONTROL, INPROGRESS, 0, TIMEOUT_US);
if (ret) {
- ivpu_err(vdev, "Failed to sync before D0i3 tansition: %d\n", ret);
+ ivpu_err(vdev, "Failed to sync before D0i3 transition: %d\n", ret);
return ret;
}
@@ -621,7 +621,7 @@ static int ivpu_boot_d0i3_drive(struct ivpu_device *vdev, bool enable)
ret = REGB_POLL_FLD(MTL_BUTTRESS_VPU_D0I3_CONTROL, INPROGRESS, 0, TIMEOUT_US);
if (ret)
- ivpu_err(vdev, "Failed to sync after D0i3 tansition: %d\n", ret);
+ ivpu_err(vdev, "Failed to sync after D0i3 transition: %d\n", ret);
return ret;
}
--
2.30.2
On Fri, Jan 20, 2023 at 09:28:42AM +0000, Colin Ian King wrote:
> There are spelling mistakes in two ivpu_err error messages. Fix them.
>
> Signed-off-by: Colin Ian King <[email protected]>
Reviewed-by: Stanislaw Gruszka <[email protected]>
> ---
> drivers/accel/ivpu/ivpu_hw_mtl.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/accel/ivpu/ivpu_hw_mtl.c b/drivers/accel/ivpu/ivpu_hw_mtl.c
> index b59b1f472b40..62bfaa9081c4 100644
> --- a/drivers/accel/ivpu/ivpu_hw_mtl.c
> +++ b/drivers/accel/ivpu/ivpu_hw_mtl.c
> @@ -608,7 +608,7 @@ static int ivpu_boot_d0i3_drive(struct ivpu_device *vdev, bool enable)
>
> ret = REGB_POLL_FLD(MTL_BUTTRESS_VPU_D0I3_CONTROL, INPROGRESS, 0, TIMEOUT_US);
> if (ret) {
> - ivpu_err(vdev, "Failed to sync before D0i3 tansition: %d\n", ret);
> + ivpu_err(vdev, "Failed to sync before D0i3 transition: %d\n", ret);
> return ret;
> }
>
> @@ -621,7 +621,7 @@ static int ivpu_boot_d0i3_drive(struct ivpu_device *vdev, bool enable)
>
> ret = REGB_POLL_FLD(MTL_BUTTRESS_VPU_D0I3_CONTROL, INPROGRESS, 0, TIMEOUT_US);
> if (ret)
> - ivpu_err(vdev, "Failed to sync after D0i3 tansition: %d\n", ret);
> + ivpu_err(vdev, "Failed to sync after D0i3 transition: %d\n", ret);
>
> return ret;
> }
> --
> 2.30.2
>