aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Lawrynowicz <[email protected]>2024-04-02 12:49:28 +0200
committerJacek Lawrynowicz <[email protected]>2024-04-08 10:55:01 +0200
commit0d298e23292b7a5b58c5589fe33b96e95363214f (patch)
treed03d062ca68efab9e8bb5655e7dc6325e1886cb4
parentc52c35e5b404b95a5bcff39af9be1b9293be3434 (diff)
accel/ivpu: Fix missed error message after VPU rename
Change "VPU" to "NPU" in ivpu_suspend() so it matches all other error messages. Signed-off-by: Jacek Lawrynowicz <[email protected]> Reviewed-by: Jeffrey Hugo <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r--drivers/accel/ivpu/ivpu_pm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/accel/ivpu/ivpu_pm.c b/drivers/accel/ivpu/ivpu_pm.c
index ba51781b5896..4f5ea466731f 100644
--- a/drivers/accel/ivpu/ivpu_pm.c
+++ b/drivers/accel/ivpu/ivpu_pm.c
@@ -62,7 +62,7 @@ static int ivpu_suspend(struct ivpu_device *vdev)
ret = ivpu_shutdown(vdev);
if (ret)
- ivpu_err(vdev, "Failed to shutdown VPU: %d\n", ret);
+ ivpu_err(vdev, "Failed to shutdown NPU: %d\n", ret);
return ret;
}