+amd-gfx, patch is Reviewed-by: Chunming Zhou <[email protected]> -----Original Message----- From: Colin King [mailto:[email protected]] Sent: Thursday, December 29, 2016 11:47 PM To: Deucher, Alexander <[email protected]>; Koenig, Christian <[email protected]>; David Airlie <[email protected]>; Zhou, David(ChunMing) <[email protected]>; StDenis, Tom <[email protected]>; Liu, Monk <[email protected]>; [email protected] Cc: [email protected] Subject: [PATCH] drm/amd/amdgpu: fix spelling mistake: "comleted" -> "completed"
From: Colin Ian King <[email protected]> trivial fix to spelling mistake in WARN message Signed-off-by: Colin Ian King <[email protected]> --- drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c index 60bd4af..9ca3167 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c @@ -2335,7 +2335,7 @@ int amdgpu_gpu_reset(struct amdgpu_device *adev) if (fence) { r = dma_fence_wait(fence, false); if (r) { - WARN(r, "recovery from shadow isn't comleted\n"); + WARN(r, "recovery from shadow isn't completed\n"); break; } } @@ -2347,7 +2347,7 @@ int amdgpu_gpu_reset(struct amdgpu_device *adev) if (fence) { r = dma_fence_wait(fence, false); if (r) - WARN(r, "recovery from shadow isn't comleted\n"); + WARN(r, "recovery from shadow isn't completed\n"); } dma_fence_put(fence); } -- 2.10.2 _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx
