Message ID | 20230120092842.79238-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [next] accel/ivpu: Fix spelling mistake "tansition" -> "transition" | expand |
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 <colin.i.king@gmail.com> Reviewed-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com> > --- > 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 >
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; }
There are spelling mistakes in two ivpu_err error messages. Fix them. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- drivers/accel/ivpu/ivpu_hw_mtl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)