summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Ian King <colin.i.king@gmail.com>2025-02-26 08:57:33 +0000
committerAlex Deucher <alexander.deucher@amd.com>2025-02-27 16:50:03 -0500
commiteaa3feb16d3b8fbb787cc6c0c16c45bf654d806a (patch)
tree8ca163ee97cad2e68e7850d4d43c00cde21c7026
parent00f85667faf03591666a3a447dc0d489ea9f0cb4 (diff)
drm/amdgpu: Fix spelling mistake "initiailize" -> "initialize" and grammar
There is a spelling mistake and a grammatical error in a dev_err message. Fix it. Reviewed-by: Tao Zhou <tao.zhou1@amd.com> Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
index 0b288deb9b19..15cd0a007b71 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_cper.c
@@ -542,7 +542,7 @@ int amdgpu_cper_init(struct amdgpu_device *adev)
r = amdgpu_cper_ring_init(adev);
if (r) {
- dev_err(adev->dev, "fail to initiailize cper ring, r = %d\n", r);
+ dev_err(adev->dev, "failed to initialize cper ring, r = %d\n", r);
return r;
}