aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-12-21 08:16:03 +0100
committerElyes Haouas <ehaouas@noos.fr>2022-12-22 03:27:34 +0000
commitd7326282f93c92f0bf575b9aa2e8e8411b9399ef (patch)
tree79aca27909ece6b5909e7aad5cff6bff2861bd33 /src/lib
parent9a1d01f48ecce473fb01e198bba65b384dd979b2 (diff)
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>
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/device_tree.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/device_tree.c b/src/lib/device_tree.c
index b846c25783..352f2545db 100644
--- a/src/lib/device_tree.c
+++ b/src/lib/device_tree.c
@@ -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);