summaryrefslogtreecommitdiff
path: root/lib/trusted_os/trusted_os.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/trusted_os/trusted_os.c')
-rw-r--r--lib/trusted_os/trusted_os.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/trusted_os/trusted_os.c b/lib/trusted_os/trusted_os.c
index 1785416..44f7fc0 100644
--- a/lib/trusted_os/trusted_os.c
+++ b/lib/trusted_os/trusted_os.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2014, ARM Limited. All rights reserved.
+ * Copyright (c) 2014-2016, ARM Limited. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
@@ -36,11 +36,11 @@
unsigned int is_trusted_os_present(uuid_t *tos_uuid)
{
- smc64_args tos_uid_args = { SMC_TOS_UID };
- smc64_ret_values ret;
+ smc_args tos_uid_args = { SMC_TOS_UID };
+ smc_ret_values ret;
uint32_t *tos_uuid32;
- ret = tftf_smc64(&tos_uid_args);
+ ret = tftf_smc(&tos_uid_args);
if ((ret.ret0 == SMC_UNKNOWN) ||
((ret.ret0 == 0) && (ret.ret1 == 0) && (ret.ret2 == 0) &&