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: 1783161 Return-Path: X-Original-To: patchwork-dri-devel@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 9A0603FCAE for ; Thu, 22 Nov 2012 08:53:25 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4C758E5CFE for ; Thu, 22 Nov 2012 00:53:25 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-ee0-f49.google.com (mail-ee0-f49.google.com [74.125.83.49]) by gabe.freedesktop.org (Postfix) with ESMTP id 99E8DE5C12 for ; Thu, 22 Nov 2012 00:52:52 -0800 (PST) Received: by mail-ee0-f49.google.com with SMTP id c4so2796101eek.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=NK2EH5ttN56chViiA8cr+GLI/pdlxWp+vF5ojHIT8Al7V/TXf2ZeEH+IO9hkOcKFXt UPTnWdBiPrk58bqmA71c9947+bJZ29ePluWnDlcGke0gFt6Ui2/l4HKeh28L1ld10q6U pGivF4+w/LwNSkhqJ/HIH/apKaImHjeQXzxw5YBDyCWQTGbBqCG1bVDaN0shP//C6U7V hXBHXUu8bomB8KnWWrnI/FmgPFEmQeu66M80jJKlTblBE8HOqZLCYOpt8d7VG2P45Qz0 StlvsBTZ/t1fXB9Hl9o0cm9h7uQ07SUllcOrHVs6GoBOFZklcEBcjmgD/91ao4YgHjFk splQ== 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 Subject: [PATCH] drm/edid: tune down debug message in parse_hdmi_vsdb 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: ALoCoQlo89ygsZobOwL0U19bM+02ZSKVxSj4WTtLQpQtykRhmQKSKgUZtefwICpVU7kFGhAzcghq Cc: Daniel Vetter , Intel Graphics Development , DRI Development X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=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, "