Skip to content

Commit

Permalink
drm: make debug levels match in edid failure code.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Dave Airlie authored and Dave Airlie committed Jun 16, 2011
1 parent e6ba759 commit f49dadb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/drm_edid.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit f49dadb

Please sign in to comment.