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:
parent
6f6be5afbd
commit
75c5eadaf6
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue