summaryrefslogtreecommitdiff
path: root/drivers/accel/ivpu
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2023-01-20 09:28:42 +0000
committerJacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>2023-01-25 15:15:39 +0100
commitfc64adc56b8302ed21189607dd4b4f4719f2c78f (patch)
tree38bd98847dc75a01b2df65012ac6d92e3606f135 /drivers/accel/ivpu
parentb49323aa35d502b0d9a7950327f30a1a52eae534 (diff)
accel/ivpu: Fix spelling mistake "tansition" -> "transition"
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> Signed-off-by: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230120092842.79238-1-colin.i.king@gmail.com
Diffstat (limited to 'drivers/accel/ivpu')
-rw-r--r--drivers/accel/ivpu/ivpu_hw_mtl.c4
1 files 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;
}