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:
Elyes Haouas 2022-12-21 08:16:03 +01:00
parent 9a1d01f48e
commit d7326282f9
1 changed files with 1 additions and 2 deletions

View File

@ -256,8 +256,7 @@ struct device_tree *fdt_unflatten(const void *blob)
return NULL; return NULL;
} }
if (version > FDT_SUPPORTED_VERSION) if (version > FDT_SUPPORTED_VERSION)
printk(BIOS_DEBUG, printk(BIOS_NOTICE, "FDT version %u too new, should add support!\n",
"NOTE: FDT version %u too new, should add support!\n",
version); version);
uint32_t struct_offset = be32toh(header->structure_offset); uint32_t struct_offset = be32toh(header->structure_offset);