aboutsummaryrefslogtreecommitdiff
path: root/tftf/tests
diff options
context:
space:
mode:
authorJ-Alves <joao.alves@arm.com>2020-10-08 17:16:58 +0100
committerJ-Alves <joao.alves@arm.com>2020-10-27 19:43:15 +0000
commitd1aae29e68abf456965458a300ea9807fa4213a1 (patch)
tree859baf77ae8bb0dc4dfd40a9c7ce5b6ffa73b9b6 /tftf/tests
parentf3a393cbf25c37cc7d6578aec1158a59edbfa922 (diff)
downloadtf-a-tests-d1aae29e68abf456965458a300ea9807fa4213a1.tar.gz
cactus: macros for processing of commands
Set of macros to be used for sending and handling commands to and from cactus. The implemented macros use ffa direct messaging interfaces. Signed-off-by: J-Alves <joao.alves@arm.com> Change-Id: I4e02933167ce078d3a467881eece588fa460510b
Diffstat (limited to 'tftf/tests')
-rw-r--r--tftf/tests/runtime_services/secure_service/ffa_helpers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tftf/tests/runtime_services/secure_service/ffa_helpers.c b/tftf/tests/runtime_services/secure_service/ffa_helpers.c
index a17b01a91..78dfa422d 100644
--- a/tftf/tests/runtime_services/secure_service/ffa_helpers.c
+++ b/tftf/tests/runtime_services/secure_service/ffa_helpers.c
@@ -86,7 +86,7 @@ smc_ret_values ffa_msg_send_direct_req(uint32_t source_id, uint32_t dest_id,
message, 0, 0, 0, 0);
}
-static smc_ret_values __ffa_msg_send_direct_req64_5(uint32_t source_id,
+smc_ret_values ffa_msg_send_direct_req64_5args(uint32_t source_id,
uint32_t dest_id,
uint64_t arg0,
uint64_t arg1,
@@ -108,7 +108,7 @@ static smc_ret_values __ffa_msg_send_direct_req64_5(uint32_t source_id,
smc_ret_values ffa_msg_send_direct_req64(uint32_t source_id, uint32_t dest_id,
uint64_t message)
{
- return __ffa_msg_send_direct_req64_5(source_id, dest_id,
+ return ffa_msg_send_direct_req64_5args(source_id, dest_id,
message, 0, 0, 0, 0);
}