Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1457322 > unrolled thread

[PATCH 4/7] drm/amdgpu: Don't print error on aux transaction timeouts

Started byLyude <cpaul@redhat.com>
First post2016-08-06 22:30 +0200
Last post2016-08-06 22:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 4/7] drm/amdgpu: Don't print error on aux transaction timeouts Lyude <cpaul@redhat.com> - 2016-08-06 22:30 +0200

#1457322 — [PATCH 4/7] drm/amdgpu: Don't print error on aux transaction timeouts

FromLyude <cpaul@redhat.com>
Date2016-08-06 22:30 +0200
Subject[PATCH 4/7] drm/amdgpu: Don't print error on aux transaction timeouts
Message-ID<s3goh-263-15@gated-at.bofh.it>
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.

Signed-off-by: Lyude <cpaul@redhat.com>
---
 drivers/gpu/drm/amd/amdgpu/atombios_dp.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/atombios_dp.c b/drivers/gpu/drm/amd/amdgpu/atombios_dp.c
index 7f85c2c..166dc7b 100644
--- a/drivers/gpu/drm/amd/amdgpu/atombios_dp.c
+++ b/drivers/gpu/drm/amd/amdgpu/atombios_dp.c
@@ -88,7 +88,6 @@ static int amdgpu_atombios_dp_process_aux_ch(struct amdgpu_i2c_chan *chan,
 
 	/* timeout */
 	if (args.v2.ucReplyStatus == 1) {
-		DRM_DEBUG_KMS("dp_aux_ch timeout\n");
 		r = -ETIMEDOUT;
 		goto done;
 	}
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web