Build: Align manifest service
Align manifest service to PSA FF 1.0.0:
- Remove "signal" from service region.
- Change signal macro names postfix from "_SIG" to "_SIGNAL".
Change-Id: Ib405f5cc8ec9b4a04e294a19957c4b425f6ccb65
Signed-off-by: Edison Ai <edison.ai@arm.com>
diff --git a/secure_fw/services/crypto/crypto_init.c b/secure_fw/services/crypto/crypto_init.c
index de28a4a..bdb99e4 100644
--- a/secure_fw/services/crypto/crypto_init.c
+++ b/secure_fw/services/crypto/crypto_init.c
@@ -214,9 +214,9 @@
while (1) {
signals = psa_wait(PSA_WAIT_ANY, PSA_BLOCK);
- if (signals & TFM_CRYPTO_SIG) {
+ if (signals & TFM_CRYPTO_SIGNAL) {
/* Extract the message */
- if (psa_get(TFM_CRYPTO_SIG, &msg) != PSA_SUCCESS) {
+ if (psa_get(TFM_CRYPTO_SIGNAL, &msg) != PSA_SUCCESS) {
/* FIXME: Should be replaced by TF-M error handling */
while (1) {
;