aboutsummaryrefslogtreecommitdiff
path: root/core/arch/arm32/tee
diff options
context:
space:
mode:
authorJens Wiklander <jens.wiklander@linaro.org>2014-10-30 08:08:21 +0100
committerJens Wiklander <jens.wiklander@linaro.org>2014-11-03 08:46:37 +0100
commit4e4547c88ea624cbf8317a0bade615a55a7eb441 (patch)
tree6d4858a5dc8fc509d3d551665d6966b306e7ca4d /core/arch/arm32/tee
parent71767a5c479c8f84aea3e883008553f6ddcfa286 (diff)
Rename teesmc_st.h to teesmc_optee.h
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org> Tested-by: Jens Wiklander <jens.wiklander@linaro.org> (QEMU virt platform) Reviewed-by: Pascal Brand <pascal.brand@linaro.org>
Diffstat (limited to 'core/arch/arm32/tee')
-rw-r--r--core/arch/arm32/tee/arch_tee_fs.c4
-rw-r--r--core/arch/arm32/tee/entry.c1
2 files changed, 2 insertions, 3 deletions
diff --git a/core/arch/arm32/tee/arch_tee_fs.c b/core/arch/arm32/tee/arch_tee_fs.c
index 33ee35a..c6ec040 100644
--- a/core/arch/arm32/tee/arch_tee_fs.c
+++ b/core/arch/arm32/tee/arch_tee_fs.c
@@ -55,7 +55,7 @@ int tee_fs_send_cmd(struct tee_fs_rpc *bf_cmd, void *data, uint32_t len,
tee_ta_set_current_session(NULL);
pharg = thread_rpc_alloc_arg(TEESMC32_GET_ARG_SIZE(num_params));
- thread_st_rpc_alloc_payload(sizeof(struct tee_fs_rpc) + len,
+ thread_optee_rpc_alloc_payload(sizeof(struct tee_fs_rpc) + len,
&phpayload, &cookie);
if (!pharg || !phpayload)
goto exit;
@@ -106,7 +106,7 @@ int tee_fs_send_cmd(struct tee_fs_rpc *bf_cmd, void *data, uint32_t len,
exit:
thread_rpc_free_arg(pharg);
- thread_st_rpc_free_payload(cookie);
+ thread_optee_rpc_free_payload(cookie);
tee_ta_set_current_session(sess);
return res;
}
diff --git a/core/arch/arm32/tee/entry.c b/core/arch/arm32/tee/entry.c
index 29da8c5..0897282 100644
--- a/core/arch/arm32/tee/entry.c
+++ b/core/arch/arm32/tee/entry.c
@@ -27,7 +27,6 @@
#include <tee/entry.h>
#include <sm/teesmc.h>
-#include <sm/teesmc_st.h>
#include <kernel/tee_common_unpg.h>
#include <kernel/tee_dispatch.h>
#include <kernel/panic.h>