drivers/intel/gma: Print EDID with leading instead of trailing space

This way, the block is a little indented below `EDID:` making it a
little more structured for the eye.

Change-Id: I12066efefb23c5ffa8ba6b8c486cd54e142d4dc1
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/38915
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
This commit is contained in:
Paul Menzel 2020-02-15 13:57:41 +01:00 committed by Patrick Georgi
parent 6f6be5afbd
commit 75c5eadaf6
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ void intel_gmbus_read_edid(u8 *mmio, u8 bus, u8 slave, u8 *edid, u32 edid_size)
printk (BIOS_SPEW, "EDID:\n");
for (i = 0; i < 128; i++) {
printk(BIOS_SPEW, "%02x ", edid[i]);
printk(BIOS_SPEW, " %02x", edid[i]);
if ((i & 0xf) == 0xf)
printk (BIOS_SPEW, "\n");
}