aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2014-05-28 11:34:50 +0100
committerSandrine Bailleux <sandrine.bailleux@arm.com>2014-06-05 17:39:40 +0100
commitae4ed84bb1019b996fddb53a154f2257266ac28d (patch)
treea1572e10b1825b8492dd47286213501442025d1b
parentb10f375f8bc481cdcefbf37f3b6c6ca52a8c9810 (diff)
juno: Do not retrieve entry point info for BL3-0 image
The BL3-0 gets loaded by BL2 but it will never be executed by the AP. Therefore we don't care about the entry point information returned by load_image() function. Change-Id: I9bf7e04fa41a205b7595f58f0c3484a2507141fc
-rw-r--r--plat/juno/bl2_plat_setup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/plat/juno/bl2_plat_setup.c b/plat/juno/bl2_plat_setup.c
index 1e12b08..07e2944 100644
--- a/plat/juno/bl2_plat_setup.c
+++ b/plat/juno/bl2_plat_setup.c
@@ -189,7 +189,6 @@ static int load_bl30(void)
int ret;
int e;
image_info_t bl30_image_info;
- entry_point_info_t bl30_ep;
/* Find out how much free trusted ram remains after BL2 load */
bl2_tzram_layout = bl2_plat_sec_mem_layout();
@@ -210,7 +209,7 @@ static int load_bl30(void)
bl30_load,
BL30_BASE,
&bl30_image_info,
- &bl30_ep);
+ NULL);
/* Panic if it has not been possible to load BL3-0 */
if (e) {