Commit 4ce9a182 authored by Varun Wadekar's avatar Varun Wadekar
Browse files

Tegra: return BL32 entry point info if it is valid



This patch returns pointer to the BL32 entrypoint info only if
it is valid.

Change-Id: I71ce3c4626681753c94f3a7bbaa50c26c74874cb
Signed-off-by: default avatarVarun Wadekar <vwadekar@nvidia.com>
parent 08012f48
...@@ -100,7 +100,8 @@ entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type) ...@@ -100,7 +100,8 @@ entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
if (type == NON_SECURE) if (type == NON_SECURE)
return &bl33_image_ep_info; return &bl33_image_ep_info;
if (type == SECURE) /* return BL32 entry point info if it is valid */
if (type == SECURE && bl32_image_ep_info.pc)
return &bl32_image_ep_info; return &bl32_image_ep_info;
return NULL; return NULL;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment