summaryrefslogtreecommitdiff
path: root/spm/cactus/cactus_tests
diff options
context:
space:
mode:
authorOlivier Deprez <olivier.deprez@arm.com>2021-10-05 14:35:17 +0200
committerOlivier Deprez <olivier.deprez@arm.com>2021-10-08 15:30:04 +0200
commit24bd170c0288c302976bb26cc4af5dee039ecc4c (patch)
tree3fd2f927dcc2cfc0115a77678b0f9adc36672987 /spm/cactus/cactus_tests
parent2b9171502ee235cd72c2db09b0faa17cf2fe6863 (diff)
fix(ff-a): cactus and ivy verbosity
Unify welcome message for all test partition types. Reduce verbosity for release builds. Signed-off-by: Olivier Deprez <olivier.deprez@arm.com> Change-Id: I747ab52f13942d655092b07d029292895cb01159
Diffstat (limited to 'spm/cactus/cactus_tests')
-rw-r--r--spm/cactus/cactus_tests/cactus_test_ffa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/spm/cactus/cactus_tests/cactus_test_ffa.c b/spm/cactus/cactus_tests/cactus_test_ffa.c
index ba069d0..2dc264e 100644
--- a/spm/cactus/cactus_tests/cactus_test_ffa.c
+++ b/spm/cactus/cactus_tests/cactus_test_ffa.c
@@ -141,7 +141,7 @@ void ffa_version_test(void)
((spm_version >> FFA_VERSION_MAJOR_SHIFT) == FFA_MAJOR &&
(spm_version & FFA_VERSION_MINOR_MASK) >= FFA_MINOR);
- NOTICE("FFA_VERSION returned %u.%u; Compatible: %i\n",
+ VERBOSE("FFA_VERSION returned %u.%u; Compatible: %i\n",
spm_version >> FFA_VERSION_MAJOR_SHIFT,
spm_version & FFA_VERSION_MINOR_MASK,
(int)ffa_version_compatible);