mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00
fix(spm): reduce verbosity on passing tf-a-tests
Reduce info messages verbosity for RME test cases: INFO: Sip Call - Protect memory INFO: Sip Call - Unprotect memory INFO: Sip Call - Protect memory INFO: Sip Call - Unprotect memory Signed-off-by: Olivier Deprez <olivier.deprez@arm.com> Change-Id: I0bdb545bc6576110dd740ecda8130618f51ed710
This commit is contained in:
parent
885e93f907
commit
29872eb330
1 changed files with 2 additions and 2 deletions
|
@ -111,11 +111,11 @@ uintptr_t plat_arm_sip_handler(uint32_t smc_fid,
|
|||
|
||||
#if (ENABLE_RME == 1) && (defined(SPD_spmd) && SPMD_SPM_AT_SEL2 == 1)
|
||||
case PLAT_PROTECT_MEM_SMC64:
|
||||
INFO("Sip Call - Protect memory\n");
|
||||
VERBOSE("Sip Call - Protect memory\n");
|
||||
return plat_protect_memory(true, secure_origin, x1, x2, handle);
|
||||
break;
|
||||
case PLAT_UNPROTECT_MEM_SMC64:
|
||||
INFO("Sip Call - Unprotect memory\n");
|
||||
VERBOSE("Sip Call - Unprotect memory\n");
|
||||
return plat_protect_memory(false, secure_origin, x1, x2, handle);
|
||||
break;
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue