aboutsummaryrefslogtreecommitdiff
path: root/core/arch/arm/tee
diff options
context:
space:
mode:
authorPeng Fan <peng.fan@nxp.com>2018-10-14 09:16:32 +0800
committerJérôme Forissier <jerome.forissier@linaro.org>2018-12-07 17:12:10 +0100
commitf5172a4aa993f644d0edb3a64a49938fd2e6f906 (patch)
tree2056f7f3ddc9cc87d18bda5af2980bf1c14ce27c /core/arch/arm/tee
parent94db01ef448d1e552161c2d861d57a5f8bda0cc0 (diff)
tee: entry_fast: correct tee_entry_generic_get_api_call_count
There are actually 11 API calls in tee_entry_fast. Signed-off-by: Peng Fan <peng.fan@nxp.com> Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
Diffstat (limited to 'core/arch/arm/tee')
-rw-r--r--core/arch/arm/tee/entry_fast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/arch/arm/tee/entry_fast.c b/core/arch/arm/tee/entry_fast.c
index a1d11daf..bd541854 100644
--- a/core/arch/arm/tee/entry_fast.c
+++ b/core/arch/arm/tee/entry_fast.c
@@ -185,7 +185,7 @@ size_t tee_entry_generic_get_api_call_count(void)
* target has additional calls it will call this function and
* add the number of calls the target has added.
*/
- return 9;
+ return 11;
}
void __weak tee_entry_get_api_call_count(struct thread_smc_args *args)