]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/radeon: Don't print error on aux transaction timeouts
authorLyude <cpaul@redhat.com>
Sat, 6 Aug 2016 00:30:34 +0000 (20:30 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 8 Aug 2016 17:28:12 +0000 (13:28 -0400)
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>
drivers/gpu/drm/radeon/radeon_dp_auxch.c

index db64e0062689b076842b9710c33e4660c96e9985..2d465648856a03156c878993ab2cc24755aec74f 100644 (file)
@@ -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;
        }