summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorWim Vervoorn <wvervoorn@eltan.com>2021-04-01 10:23:13 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-04-06 06:53:17 +0000
commite48bd3adb4f4f51bdb6e9680efea2938ee52d826 (patch)
treef2eb5663d1d1c4a724e7edb681530d1304028a9f /src/include
parentc63a9fb7576e2b457eb2ece83b65f6e037e4ff83 (diff)
downloadcoreboot-e48bd3adb4f4f51bdb6e9680efea2938ee52d826.tar.xz
include/cbfsglue.h: Use BIOS_INFO for LOG macro
The ERROR() and LOG() macros both used BIOS_ERR as the error level. The messages generated by the LOG() macro are informational items. Change to BIOS_INFO to reflect that. BUG=N/A TEST=tested on facebook monolith Change-Id: I3827a7d65a9d70045a36fb8db4b2c129e1045122 Signed-off-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/52019 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-by: Julius Werner <jwerner@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/cbfs_glue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/cbfs_glue.h b/src/include/cbfs_glue.h
index ffca83ef06..3170c37269 100644
--- a/src/include/cbfs_glue.h
+++ b/src/include/cbfs_glue.h
@@ -20,7 +20,7 @@
(CONFIG(TOCTOU_SAFETY) || ENV_INITIAL_STAGE))
#define ERROR(...) printk(BIOS_ERR, "CBFS ERROR: " __VA_ARGS__)
-#define LOG(...) printk(BIOS_ERR, "CBFS: " __VA_ARGS__)
+#define LOG(...) printk(BIOS_INFO, "CBFS: " __VA_ARGS__)
#define DEBUG(...) do { \
if (CONFIG(DEBUG_CBFS)) \
printk(BIOS_SPEW, "CBFS DEBUG: " __VA_ARGS__); \