diff options
author | Colin Ian King <colin.king@canonical.com> | 2020-07-10 09:37:58 +0100 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-07-10 17:43:02 -0400 |
commit | 4afaa61db9cf5250b5734c2531b226e7b3a3d691 (patch) | |
tree | ce92bb09186acd7bb101a2209330d719a7251749 /drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | |
parent | 7bdb089993f9e65ec826c770aa1d05469bdf8eac (diff) | |
download | linux-4afaa61db9cf5250b5734c2531b226e7b3a3d691.tar.gz linux-4afaa61db9cf5250b5734c2531b226e7b3a3d691.tar.bz2 linux-4afaa61db9cf5250b5734c2531b226e7b3a3d691.zip |
drm/amdgpu: fix spelling mistake "Falied" -> "Failed"
There is a spelling mistake in a DRM_ERROR error message. Fix it.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c index e20695b44dbe..40706334f7a8 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c @@ -1984,7 +1984,7 @@ static int psp_suspend(void *handle) ret = psp_tmr_terminate(psp); if (ret) { - DRM_ERROR("Falied to terminate tmr\n"); + DRM_ERROR("Failed to terminate tmr\n"); return ret; } |