diff mbox series

[next] drm/amdgpu: Fix a couple of spelling mistakes

Message ID 20220128092751.7679-1-colin.i.king@gmail.com (mailing list archive)
State New, archived
Headers show
Series [next] drm/amdgpu: Fix a couple of spelling mistakes | expand

Commit Message

Colin Ian King Jan. 28, 2022, 9:27 a.m. UTC
There are two spelling mistakes in dev_err messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c
index 80c25176c993..06d3336a1c84 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_virt.c
@@ -919,14 +919,14 @@  static u32 amdgpu_virt_rlcg_reg_rw(struct amdgpu_device *adev, u32 offset, u32 v
 						"wrong operation type, rlcg failed to program reg: 0x%05x\n", offset);
 				} else if (tmp & AMDGPU_RLCG_REG_NOT_IN_RANGE) {
 					dev_err(adev->dev,
-						"regiser is not in range, rlcg failed to program reg: 0x%05x\n", offset);
+						"register is not in range, rlcg failed to program reg: 0x%05x\n", offset);
 				} else {
 					dev_err(adev->dev,
 						"unknown error type, rlcg failed to program reg: 0x%05x\n", offset);
 				}
 			} else {
 				dev_err(adev->dev,
-					"timeout: rlcg faled to program reg: 0x%05x\n", offset);
+					"timeout: rlcg failed to program reg: 0x%05x\n", offset);
 			}
 		}
 	}