summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDave Airlie2011-06-14 08:13:54 +0200
committerDave Airlie2011-06-16 08:29:37 +0200
commitf49dadb82dde88092827b6d058e7164e75e96759 (patch)
treed352e652b837826f366880bed0560381446e5b22 /drivers
parentdrm/radeon/kms: clear wb memory by default (diff)
downloadkernel-qcow2-linux-f49dadb82dde88092827b6d058e7164e75e96759.tar.gz
kernel-qcow2-linux-f49dadb82dde88092827b6d058e7164e75e96759.tar.xz
kernel-qcow2-linux-f49dadb82dde88092827b6d058e7164e75e96759.zip
drm: make debug levels match in edid failure code.
this puts the header and followup at the same loglevel as the hex dump code. Signed-off-by: Dave Airlie <airlied@redhat.com> Reviewed-by: Alex Deucher <alexdeucher@gmail.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/gpu/drm/drm_edid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index 0a9357c66ff8..3618d29c79a2 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;
}