lib/device_tree.c: Change log level message
Move a "NOTE" message from BIOS_DEBUG to BIOS_NOTICE log level. Change-Id: If92c1ccb5b10a4b29a5006a41ebd0855294f354e Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69498 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
parent
9a1d01f48e
commit
d7326282f9
|
@ -256,8 +256,7 @@ struct device_tree *fdt_unflatten(const void *blob)
|
|||
return NULL;
|
||||
}
|
||||
if (version > FDT_SUPPORTED_VERSION)
|
||||
printk(BIOS_DEBUG,
|
||||
"NOTE: FDT version %u too new, should add support!\n",
|
||||
printk(BIOS_NOTICE, "FDT version %u too new, should add support!\n",
|
||||
version);
|
||||
|
||||
uint32_t struct_offset = be32toh(header->structure_offset);
|
||||
|
|
Loading…
Reference in New Issue