Commit 96ef670a authored by danh-arm's avatar danh-arm Committed by GitHub
Browse files

Merge pull request #1048 from douglas-raillard-arm/dr/fix_bl2u_entrypoint

Fix BL2U entrypoint possible parameter corruption
parents a937d93e 5c2c88b5
Showing with 2 additions and 2 deletions
+2 -2
...@@ -32,7 +32,7 @@ func bl2u_entrypoint ...@@ -32,7 +32,7 @@ func bl2u_entrypoint
* --------------------------------------------- * ---------------------------------------------
*/ */
mov r11, r1 mov r11, r1
mov r12, r2 mov r10, r2
/* --------------------------------------------- /* ---------------------------------------------
* Set the exception vector to something sane. * Set the exception vector to something sane.
...@@ -107,7 +107,7 @@ func bl2u_entrypoint ...@@ -107,7 +107,7 @@ func bl2u_entrypoint
* --------------------------------------------- * ---------------------------------------------
*/ */
mov r0, r11 mov r0, r11
mov r1, r12 mov r1, r10
bl bl2u_early_platform_setup bl bl2u_early_platform_setup
bl bl2u_plat_arch_setup bl bl2u_plat_arch_setup
......
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