commit | cbaa22bfe88133591ed47fe08b9e95596795a24e | [log] [tgz] |
---|---|---|
author | Antonio de Angelis <Antonio.deAngelis@arm.com> | Wed May 19 11:03:15 2021 +0100 |
committer | Antonio de Angelis <Antonio.deAngelis@arm.com> | Thu May 27 14:25:26 2021 +0100 |
tree | 44d6e0dc2a91115b0a9c3f5edec1769570cea805 | |
parent | 62eca02fe7a2ed4516632ccf54e060972e3548e6 [diff] |
SPM: Fix missing break in TFM_SVC_OUTPUT_UNPRIV_STRING SVC handling Missing break statement when handling TFM_SVC_OUTPUT_UNPRIV_STRING in Library mode Signed-off-by: Antonio de Angelis <antonio.deangelis@arm.com> Change-Id: I13cee7e29a6879856f3a395ff36f223c994a395a
diff --git a/secure_fw/spm/cmsis_func/tfm_core_svcalls_func.c b/secure_fw/spm/cmsis_func/tfm_core_svcalls_func.c index f6407e5..879f991 100644 --- a/secure_fw/spm/cmsis_func/tfm_core_svcalls_func.c +++ b/secure_fw/spm/cmsis_func/tfm_core_svcalls_func.c
@@ -97,6 +97,7 @@ case TFM_SVC_OUTPUT_UNPRIV_STRING: svc_args[0] = tfm_hal_output_spm_log((const char *)svc_args[0], svc_args[1]); + break; #endif default: #ifdef PLATFORM_SVC_HANDLERS