diff options
author | Manish Pandey <manish.pandey2@arm.com> | 2020-03-26 21:46:53 +0000 |
---|---|---|
committer | Manish Pandey <manish.pandey2@arm.com> | 2020-03-27 11:21:03 +0000 |
commit | f98f464e2a22cc6fc3760fa9ea8b61076832d445 (patch) | |
tree | bca7aa9cc8bb41804c59afafa07e2d22a222a274 /lib | |
parent | 8d8d9cf2a68b0f835a25640511f818e116ebe0eb (diff) | |
download | platform_external_arm-trusted-firmware-f98f464e2a22cc6fc3760fa9ea8b61076832d445.tar.gz platform_external_arm-trusted-firmware-f98f464e2a22cc6fc3760fa9ea8b61076832d445.tar.bz2 platform_external_arm-trusted-firmware-f98f464e2a22cc6fc3760fa9ea8b61076832d445.zip |
fconf: notify if fw_config dt is not used
Notify if fw_config dt is either not available or not loaded from fip.
Change-Id: I4dfcbe5032503d97f532a3287c5312c581578b68
Signed-off-by: Manish Pandey <manish.pandey2@arm.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/fconf/fconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fconf/fconf.c b/lib/fconf/fconf.c index 3007273ae..a5ec14300 100644 --- a/lib/fconf/fconf.c +++ b/lib/fconf/fconf.c @@ -33,7 +33,7 @@ void fconf_load_config(void) err = load_auth_image(TB_FW_CONFIG_ID, &arm_tb_fw_info); if (err != 0) { /* Return if FW_CONFIG is not loaded */ - WARN("Failed to load FW_CONFIG\n"); + VERBOSE("FW_CONFIG not loaded, continuing without it\n"); return; } |