summaryrefslogtreecommitdiff
path: root/spm/cactus/cactus_tests
diff options
context:
space:
mode:
authorOlivier Deprez <olivier.deprez@arm.com>2021-10-11 15:58:18 +0200
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2021-10-11 15:58:18 +0200
commitc01244e6e9eea9d0580623af0540ba41577c5f57 (patch)
tree3fd2f927dcc2cfc0115a77678b0f9adc36672987 /spm/cactus/cactus_tests
parent323646e97fffa1ffecb6b89a719aaa6f73d7d452 (diff)
parent24bd170c0288c302976bb26cc4af5dee039ecc4c (diff)
Merge changes from topic "od/fix-spm-verbosity"
* changes: fix(ff-a): cactus and ivy verbosity fix(ff-a): remove test regions from SP manifests
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);