mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
[fix] aarch32: optee: define the OP-TEE secure payload
As per MISRA C-2012 Rule 10.4. arg0 is a u_register_t, can be a 32bit or 64bit upon architecture. Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org>
This commit is contained in:
parent
765ed9fc55
commit
95ae5b0044
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ entry_point_info_t *bl2_load_images(void)
|
|||
assert(bl2_to_next_bl_params->head->ep_info);
|
||||
|
||||
/* Populate arg0 for the next BL image if not already provided */
|
||||
if (bl2_to_next_bl_params->head->ep_info->args.arg0 == 0)
|
||||
if (bl2_to_next_bl_params->head->ep_info->args.arg0 == (u_register_t)0)
|
||||
bl2_to_next_bl_params->head->ep_info->args.arg0 =
|
||||
(u_register_t)bl2_to_next_bl_params;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue