diff options
Diffstat (limited to 'services')
-rw-r--r-- | services/spd/opteed/opteed_main.c | 2 | ||||
-rw-r--r-- | services/spd/opteed/opteed_private.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/services/spd/opteed/opteed_main.c b/services/spd/opteed/opteed_main.c index 01ec2a26d..59d6ed294 100644 --- a/services/spd/opteed/opteed_main.c +++ b/services/spd/opteed/opteed_main.c @@ -34,7 +34,7 @@ * Address of the entrypoint vector table in OPTEE. It is * initialised once on the primary core after a cold boot. ******************************************************************************/ -optee_vectors_t *optee_vector_table; +struct optee_vectors *optee_vector_table; /******************************************************************************* * Array to keep track of per-cpu OPTEE state diff --git a/services/spd/opteed/opteed_private.h b/services/spd/opteed/opteed_private.h index b77b6d342..a5f0a4168 100644 --- a/services/spd/opteed/opteed_private.h +++ b/services/spd/opteed/opteed_private.h @@ -144,7 +144,7 @@ uint64_t opteed_enter_sp(uint64_t *c_rt_ctx); void __dead2 opteed_exit_sp(uint64_t c_rt_ctx, uint64_t ret); uint64_t opteed_synchronous_sp_entry(optee_context_t *optee_ctx); void __dead2 opteed_synchronous_sp_exit(optee_context_t *optee_ctx, uint64_t ret); -void opteed_init_optee_ep_state(struct entry_point_info *optee_ep, +void opteed_init_optee_ep_state(struct entry_point_info *optee_entry_point, uint32_t rw, uint64_t pc, uint64_t pageable_part, |