]> git.proxmox.com Git - mirror_edk2.git/commitdiff
ArmPlatformPkg/Sec: Replaced non-required 'blx' by 'bl'
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 10 May 2013 12:33:26 +0000 (12:33 +0000)
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 10 May 2013 12:33:26 +0000 (12:33 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14342 6f19259b-4bc3-4df7-8a09-765794883524

ArmPlatformPkg/Sec/Arm/SecEntryPoint.asm

index 42d2b0268fe1fe678760b2e7ba89542a9cce0b9d..9305e8e5291e59f10c343a23a892861ca96713aa 100644 (file)
@@ -33,10 +33,10 @@ StartupAddr        DCD      CEntryPoint
 \r
 _ModuleEntryPoint FUNCTION\r
   // First ensure all interrupts are disabled\r
 \r
 _ModuleEntryPoint FUNCTION\r
   // First ensure all interrupts are disabled\r
-  blx   ArmDisableInterrupts\r
+  bl    ArmDisableInterrupts\r
 \r
   // Ensure that the MMU and caches are off\r
 \r
   // Ensure that the MMU and caches are off\r
-  blx   ArmDisableCachesAndMmu\r
+  bl    ArmDisableCachesAndMmu\r
 \r
   // By default, we are doing a cold boot\r
   mov   r10, #ARM_SEC_COLD_BOOT\r
 \r
   // By default, we are doing a cold boot\r
   mov   r10, #ARM_SEC_COLD_BOOT\r