summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2016-04-14 00:38:55 +0100
committerAndre Przywara <andre.przywara@arm.com>2016-06-02 01:29:48 +0100
commit63a5c053331d0788b46d8e710fdce94972bcbc65 (patch)
tree8eec9b1821bba3352823401c2ecf87e1ec98f403
parent7375c9ec0639ac9f3e42a0b50717d8411d3a4b0b (diff)
bl31: revert Allwinner changes to bl31_main.c
Remove those changes to the non-platform specific directory. They are pointless and platform ports should confine their code to the platform directory. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
-rw-r--r--bl31/bl31_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bl31/bl31_main.c b/bl31/bl31_main.c
index d338b03..c32aefb 100644
--- a/bl31/bl31_main.c
+++ b/bl31/bl31_main.c
@@ -105,9 +105,9 @@ void bl31_main(void)
*/
if (bl32_init) {
INFO("BL3-1: Initializing BL3-2\n");
- //(*bl32_init)();
+ (*bl32_init)();
}
- //__asm__ __volatile__ ("b .");
+
/*
* We are ready to enter the next EL. Prepare entry into the image
* corresponding to the desired security state after the next ERET.