From patchwork Thu Nov 22 08:53:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel Vetter X-Patchwork-Id: 1783171 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id CE65D3FCAE for ; Thu, 22 Nov 2012 08:54:16 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 8CE09E5C12 for ; Thu, 22 Nov 2012 00:54:16 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-ea0-f177.google.com (mail-ea0-f177.google.com [209.85.215.177]) by gabe.freedesktop.org (Postfix) with ESMTP id 9E82CE5C40 for ; Thu, 22 Nov 2012 00:52:52 -0800 (PST) Received: by mail-ea0-f177.google.com with SMTP id c10so1320528eaa.36 for ; Thu, 22 Nov 2012 00:52:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ffwll.ch; s=google; h=from:to:cc:subject:date:message-id:x-mailer; bh=x3hA5+2y0IX9M43XIPCACAJ2ZXo2tQUjpwfSFKSPC1Q=; b=Exq1h8X269s69BWcf0bqnc6uOp+vGSw8nguKIRTDPg54UchHLeORAajm7sVNlHPXTX fIxqHGao+ek4uLtZePwCGEmbDPfHy95MvMlyKO7sz4cxzBobmryTTcmFnJX9sHCorU9h v2YNL04zABgEvxkR8nnWj808usjLtF//9zBbo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=x3hA5+2y0IX9M43XIPCACAJ2ZXo2tQUjpwfSFKSPC1Q=; b=hO6zOmPFq15P3F+r5ZI3nQZPJsfPmfZX5uUgRGnJcb8nswe2tixRdVo4sdpT9a/9eo EK6uIPNIMQUHN9mMIeGiGyXJQ8ajGK5jPpOWijSlG1aS/ed9KfYbrQIey4m/7WV5BCr5 +b1rRPQfzSUr9LgvN6QfYqHbhLRrVtgVyOgwIF6dJmWvH/sS0yqyRWx3vNSo6falUIvM oWX0o1s8BDILQS9Nr/Pco7CLNilpsONIjhc9apHxUdQcPgg58nwtvftHaElDzqKjkXFp dbjZ3ChdLJkfYZDd4MCPxdtQug5Qnrp3+0zTq0CyPrzldbcYEJfnALg8zuYMc2yG7bnV g9kQ== Received: by 10.14.0.3 with SMTP id 3mr38772482eea.16.1353574371963; Thu, 22 Nov 2012 00:52:51 -0800 (PST) Received: from phenom.ffwll.local (178-83-130-250.dynamic.hispeed.ch. [178.83.130.250]) by mx.google.com with ESMTPS id q2sm5642453eem.13.2012.11.22.00.52.51 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 22 Nov 2012 00:52:51 -0800 (PST) From: Daniel Vetter To: Dave Airlie Date: Thu, 22 Nov 2012 09:53:55 +0100 Message-Id: <1353574435-14717-1-git-send-email-daniel.vetter@ffwll.ch> X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQmiaDYFuWaw6vMH5xpsMsY3L45NuBvcYk74nFXsMJ5TWsgHBiZntU8npJS9UvF2GdQtj1Fi Cc: Daniel Vetter , Intel Graphics Development , DRI Development Subject: [Intel-gfx] [PATCH] drm/edid: tune down debug message in parse_hdmi_vsdb X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Those tend to be totally not interesting for end-users, and for debugging we tend to dump the entire noise anyway by enabling all debug messages. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=57388 Signed-off-by: Daniel Vetter --- drivers/gpu/drm/drm_edid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 1648200..484c36a 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c @@ -1639,7 +1639,7 @@ parse_hdmi_vsdb(struct drm_connector *connector, const u8 *db) if (len >= 12) connector->audio_latency[1] = db[12]; - DRM_LOG_KMS("HDMI: DVI dual %d, " + DRM_DEBUG_KMS("HDMI: DVI dual %d, " "max TMDS clock %d, " "latency present %d %d, " "video latency %d %d, "