summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/radeon/radeon_dp_auxch.c
diff options
context:
space:
mode:
authorLyude <cpaul@redhat.com>2016-08-05 20:30:34 -0400
committerAlex Deucher <alexander.deucher@amd.com>2016-08-08 13:28:12 -0400
commit1969753907286e5bf5b37c477113f77fbb6159e2 (patch)
tree5c646f0cd2703940f84dafb8cf71a221a52ae5fd /drivers/gpu/drm/radeon/radeon_dp_auxch.c
parent4499f2acd57b568e8fa2c7908a8a3cf2802629c5 (diff)
drm/radeon: Don't print error on aux transaction timeouts
Since it's normal for DRM to retry our aux transaction helpers multiple times in a row, up to 32 times for each attempted transaction, we're making a lot of noise that is no longer necessary now that DRM will just print the return code we give it. Reviewed-by: Christian König <christian.koenig@amd.com> Signed-off-by: Lyude <cpaul@redhat.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_dp_auxch.c')
-rw-r--r--drivers/gpu/drm/radeon/radeon_dp_auxch.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_dp_auxch.c b/drivers/gpu/drm/radeon/radeon_dp_auxch.c
index db64e0062689..2d465648856a 100644
--- a/drivers/gpu/drm/radeon/radeon_dp_auxch.c
+++ b/drivers/gpu/drm/radeon/radeon_dp_auxch.c
@@ -164,7 +164,6 @@ radeon_dp_aux_transfer_native(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg
}
if (tmp & AUX_SW_RX_TIMEOUT) {
- DRM_DEBUG_KMS("dp_aux_ch timed out\n");
ret = -ETIMEDOUT;
goto done;
}