drivers/intel/fsp2_0: Inject newline after printing EFI GUID
TEST=fsp_print_guid() output doesn't get cobbled with other serial output and now separated by a newline character. Signed-off-by: Subrata Banik <subratabanik@google.com> Change-Id: I8d47dbc5d493f86f14a1bbcf9cb5c16c0e12b841 Reviewed-on: https://review.coreboot.org/c/coreboot/+/74781 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Tarun Tuli <taruntuli@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
parent
d0b13a4d96
commit
7915884a2f
|
@ -205,7 +205,7 @@ void fsp_print_guid(int level, const void *base)
|
|||
mid[0] = read16(id + 4);
|
||||
mid[1] = read16(id + 6);
|
||||
|
||||
printk(level, "%08x-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x",
|
||||
printk(level, "%08x-%04x-%04x-%02x%02x%02x%02x%02x%02x%02x%02x\n",
|
||||
big, mid[0], mid[1],
|
||||
id[8], id[9], id[10], id[11], id[12], id[13], id[14], id[15]);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue