Commit 4c0732bf authored by Andrey Grodzovsky's avatar Andrey Grodzovsky Committed by Alex Deucher

drm/amd/display: Global lock typos fix.

Fix typos.
Signed-off-by: default avatarAndrey Grodzovsky <Andrey.Grodzovsky@amd.com>
Reviewed-by: default avatarRoman Li <Roman.Li@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 92f3ac40
...@@ -2879,7 +2879,7 @@ static int do_aquire_global_lock( ...@@ -2879,7 +2879,7 @@ static int do_aquire_global_lock(
&commit->flip_done, 10*HZ); &commit->flip_done, 10*HZ);
if (ret == 0) if (ret == 0)
DRM_ERROR("[CRTC:%d:%s] cleanup_done or flip_done " DRM_ERROR("[CRTC:%d:%s] hw_done or flip_done "
"timed out\n", crtc->base.id, crtc->name); "timed out\n", crtc->base.id, crtc->name);
drm_crtc_commit_put(commit); drm_crtc_commit_put(commit);
...@@ -3170,9 +3170,9 @@ int amdgpu_dm_atomic_check(struct drm_device *dev, ...@@ -3170,9 +3170,9 @@ int amdgpu_dm_atomic_check(struct drm_device *dev,
if (ret != 0) { if (ret != 0) {
if (ret == -EDEADLK) if (ret == -EDEADLK)
DRM_DEBUG_KMS("Atomic check stopped due to to deadlock, retrying.\n"); DRM_DEBUG_KMS("Atomic check stopped due to to deadlock.\n");
else if (ret == -EINTR || ret == -EAGAIN || ret == -ERESTARTSYS) else if (ret == -EINTR || ret == -EAGAIN || ret == -ERESTARTSYS)
DRM_DEBUG_KMS("Atomic check stopped due to to signal, retrying.\n"); DRM_DEBUG_KMS("Atomic check stopped due to to signal.\n");
else else
DRM_ERROR("Atomic check failed.\n"); DRM_ERROR("Atomic check failed.\n");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment