From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-15?Q?Christian_K=F6nig?= Subject: Re: [PATCH 1/3] drm/dp: make aux retries less chatty Date: Fri, 21 Mar 2014 20:06:37 +0100 Message-ID: <532C8DBD.6040809@amd.com> References: <1395412448-28048-1-git-send-email-alexander.deucher@amd.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Received: from ch1outboundpool.messaging.microsoft.com (ch1ehsobe003.messaging.microsoft.com [216.32.181.183]) by gabe.freedesktop.org (Postfix) with ESMTP id 9030F6E3FC for ; Fri, 21 Mar 2014 12:06:47 -0700 (PDT) In-Reply-To: <1395412448-28048-1-git-send-email-alexander.deucher@amd.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: Alex Deucher , dri-devel@lists.freedesktop.org Cc: Alex Deucher List-Id: dri-devel@lists.freedesktop.org Am 21.03.2014 15:34, schrieb Alex Deucher: > Switch to debug only to avoid flooding the logs. > This mirrors the behavior in some other drivers. > > Signed-off-by: Alex Deucher > Reviewed-by: Daniel Vetter Added to my 3.15 queue (http://cgit.freedesktop.org/~deathsimple/linux/log/?h=drm-next-3.15-wip). Thanks, Christian. > --- > drivers/gpu/drm/drm_dp_helper.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/drm_dp_helper.c b/drivers/gpu/drm/drm_dp_helper.c > index 35251af..74724aa 100644 > --- a/drivers/gpu/drm/drm_dp_helper.c > +++ b/drivers/gpu/drm/drm_dp_helper.c > @@ -402,7 +402,7 @@ static int drm_dp_dpcd_access(struct drm_dp_aux *aux, u8 request, > } > } > > - DRM_ERROR("too many retries, giving up\n"); > + DRM_DEBUG_KMS("too many retries, giving up\n"); > return -EIO; > } > > @@ -656,7 +656,7 @@ static int drm_dp_i2c_do_msg(struct drm_dp_aux *aux, struct drm_dp_aux_msg *msg) > } > } > > - DRM_ERROR("too many retries, giving up\n"); > + DRM_DEBUG_KMS("too many retries, giving up\n"); > return -EREMOTEIO; > } >