summaryrefslogtreecommitdiff
path: root/tests/runtime_services/standard_service/psci/api_tests/migrate_info_type/test_migrate_info_type.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/runtime_services/standard_service/psci/api_tests/migrate_info_type/test_migrate_info_type.c')
-rw-r--r--tests/runtime_services/standard_service/psci/api_tests/migrate_info_type/test_migrate_info_type.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/runtime_services/standard_service/psci/api_tests/migrate_info_type/test_migrate_info_type.c b/tests/runtime_services/standard_service/psci/api_tests/migrate_info_type/test_migrate_info_type.c
index e211be1..4a981f0 100644
--- a/tests/runtime_services/standard_service/psci/api_tests/migrate_info_type/test_migrate_info_type.c
+++ b/tests/runtime_services/standard_service/psci/api_tests/migrate_info_type/test_migrate_info_type.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
@@ -61,14 +61,14 @@ test_result_t test_migrate_info_type(void)
{
uuid_t tos_uuid;
char tos_uuid_str[UUID_STR_SIZE];
- smc64_args args;
- smc64_ret_values ret;
+ smc_args args;
+ smc_ret_values ret;
int32_t mp_support;
int32_t migrate_ret;
/* Identify the level of multicore support present in the Trusted OS */
args.arg0 = SMC_PSCI_MIG_INFO_TYPE;
- ret = tftf_smc64(&args);
+ ret = tftf_smc(&args);
mp_support = (int32_t) ret.ret0;
if (is_trusted_os_present(&tos_uuid)) {
@@ -114,7 +114,7 @@ test_result_t test_migrate_info_type(void)
* invalid parameters
*/
args.arg1 = read_mpidr_el1() & MPID_MASK;
- ret = tftf_smc64(&args);
+ ret = tftf_smc(&args);
migrate_ret = (int32_t) ret.ret0;
if (migrate_ret != PSCI_E_NOT_SUPPORTED) {