Skip to content

Commit

Permalink
accel/ivpu: Fix typos in ivpu_pm.c
Browse files Browse the repository at this point in the history
Replace "Filed" with an actual word.

Reviewed-by: Karol Wachowski <[email protected]>
Reviewed-by: Jeffrey Hugo <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Signed-off-by: Jacek Lawrynowicz <[email protected]>
  • Loading branch information
jlawryno committed Oct 11, 2024
1 parent 7cb8d38 commit c4fd597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/accel/ivpu/ivpu_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ int ivpu_pm_dct_enable(struct ivpu_device *vdev, u8 active_percent)

ret = ivpu_jsm_dct_enable(vdev, active_us, inactive_us);
if (ret) {
ivpu_err_ratelimited(vdev, "Filed to enable DCT: %d\n", ret);
ivpu_err_ratelimited(vdev, "Failed to enable DCT: %d\n", ret);
return ret;
}

Expand All @@ -440,7 +440,7 @@ int ivpu_pm_dct_disable(struct ivpu_device *vdev)

ret = ivpu_jsm_dct_disable(vdev);
if (ret) {
ivpu_err_ratelimited(vdev, "Filed to disable DCT: %d\n", ret);
ivpu_err_ratelimited(vdev, "Failed to disable DCT: %d\n", ret);
return ret;
}

Expand Down

0 comments on commit c4fd597

Please sign in to comment.