Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f49dadb8 authored by Dave Airlie's avatar Dave Airlie Committed by Dave Airlie
Browse files

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: default avatarDave Airlie <airlied@redhat.com>
Reviewed-by: default avatarAlex Deucher <alexdeucher@gmail.com>
parent e6ba7599
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
}