summaryrefslogtreecommitdiff
path: root/tests/runtime_services/standard_service/psci/api_tests/psci_stat/test_psci_stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runtime_services/standard_service/psci/api_tests/psci_stat/test_psci_stat.c')
-rw-r--r--tests/runtime_services/standard_service/psci/api_tests/psci_stat/test_psci_stat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/runtime_services/standard_service/psci/api_tests/psci_stat/test_psci_stat.c b/tests/runtime_services/standard_service/psci/api_tests/psci_stat/test_psci_stat.c
index 5058b8c..27e6d66 100644
--- a/tests/runtime_services/standard_service/psci/api_tests/psci_stat/test_psci_stat.c
+++ b/tests/runtime_services/standard_service/psci/api_tests/psci_stat/test_psci_stat.c
@@ -875,7 +875,7 @@ static test_result_t verify_psci_stats_cold_boot(void)
*/
test_result_t test_psci_stats_after_shutdown(void)
{
- smc64_args args = { SMC_PSCI_SYSTEM_OFF };
+ smc_args args = { SMC_PSCI_SYSTEM_OFF };
if (!is_psci_stat_supported())
return TEST_RESULT_SKIPPED;
@@ -889,7 +889,7 @@ test_result_t test_psci_stats_after_shutdown(void)
}
tftf_notify_reboot();
- tftf_smc64(&args);
+ tftf_smc(&args);
/* The PSCI SYSTEM_OFF call is not supposed to return */
tftf_testcase_printf("System didn't shutdown properly\n");
@@ -902,7 +902,7 @@ test_result_t test_psci_stats_after_shutdown(void)
*/
test_result_t test_psci_stats_after_reset(void)
{
- smc64_args args = { SMC_PSCI_SYSTEM_RESET };
+ smc_args args = { SMC_PSCI_SYSTEM_RESET };
if (!is_psci_stat_supported())
return TEST_RESULT_SKIPPED;
@@ -916,7 +916,7 @@ test_result_t test_psci_stats_after_reset(void)
}
tftf_notify_reboot();
- tftf_smc64(&args);
+ tftf_smc(&args);
/* The PSCI SYSTEM_RESET call is not supposed to return */
tftf_testcase_printf("System didn't reset properly\n");