aboutsummaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorVarun Wadekar <vwadekar@nvidia.com>2018-10-16 15:39:55 -0700
committerVarun Wadekar <vwadekar@nvidia.com>2020-03-18 17:47:08 -0700
commita1e12ded4fec1809c116f81e1b7f0c07de35c1e3 (patch)
treecd0bfe42eecdcedd2663a733dda3dcfaef43a740 /services
parentd55b8f6a89591b8784026b5c818e3cacd8a01f90 (diff)
downloadtrusted-firmware-a-a1e12ded4fec1809c116f81e1b7f0c07de35c1e3.tar.gz
spd: trusty: disable error messages seen during boot
Platforms that do not support Trusty, usually see error messages from the Trusty SPD, during boot. This can be interpreted as a boot failure. This patch lowers the logging level for those error messages to avoid confusion. Change-Id: I931baa2c6db0de1aee17383039bc29ed229a1f25 Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
Diffstat (limited to 'services')
-rw-r--r--services/spd/trusty/trusty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/services/spd/trusty/trusty.c b/services/spd/trusty/trusty.c
index ba2f4a6e4a..b10da76799 100644
--- a/services/spd/trusty/trusty.c
+++ b/services/spd/trusty/trusty.c
@@ -413,7 +413,7 @@ static int32_t trusty_setup(void)
/* Get trusty's entry point info */
ep_info = bl31_plat_get_next_image_ep_info(SECURE);
if (ep_info == NULL) {
- INFO("Trusty image missing.\n");
+ VERBOSE("Trusty image missing.\n");
return -1;
}
@@ -466,7 +466,7 @@ static int32_t trusty_setup(void)
trusty_fiq_handler,
flags);
if (ret != 0) {
- ERROR("trusty: failed to register fiq handler, ret = %d\n", ret);
+ VERBOSE("trusty: failed to register fiq handler, ret = %d\n", ret);
}
if (aarch32) {