All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] drm: make debug levels match in edid failure code.
@ 2011-06-14  6:13 Dave Airlie
  2011-06-14  6:13 ` [PATCH 2/3] drm/radeon: workaround a hw bug on some radeon chipsets with all-0 EDIDs Dave Airlie
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Dave Airlie @ 2011-06-14  6:13 UTC (permalink / raw)
  To: dri-devel

From: Dave Airlie <airlied@linux.ie>

this puts the header and followup at the same loglevel as the
hex dump code.

Signed-off-by: Dave Airlie <airlied@redhat.com>
---
 drivers/gpu/drm/drm_edid.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index 0a9357c..3618d29 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -184,9 +184,9 @@ drm_edid_block_valid(u8 *raw_edid)
 
 bad:
 	if (raw_edid) {
-		DRM_ERROR("Raw EDID:\n");
+		printk(KERN_ERR "Raw EDID:\n");
 		print_hex_dump_bytes(KERN_ERR, DUMP_PREFIX_NONE, raw_edid, EDID_LENGTH);
-		printk("\n");
+		printk(KERN_ERR "\n");
 	}
 	return 0;
 }
-- 
1.7.5.2

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-06-17 19:38 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-14  6:13 [PATCH 1/3] drm: make debug levels match in edid failure code Dave Airlie
2011-06-14  6:13 ` [PATCH 2/3] drm/radeon: workaround a hw bug on some radeon chipsets with all-0 EDIDs Dave Airlie
2011-06-14  6:31   ` Alex Deucher
2011-06-14  6:13 ` [PATCH 3/3] drm/radeon/kms: fix dac detect stealing in-use encoder Dave Airlie
2011-06-14  6:39   ` Alex Deucher
2011-06-14  6:28 ` [PATCH 1/3] drm: make debug levels match in edid failure code Alex Deucher
2011-06-17 19:38 ` Tormod Volden

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.