diff options
Diffstat (limited to 'ArmPlatformPkg/PrePeiCore')
-rw-r--r-- | ArmPlatformPkg/PrePeiCore/Exception.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ArmPlatformPkg/PrePeiCore/Exception.S b/ArmPlatformPkg/PrePeiCore/Exception.S index a7b4982c21..c2ce15657b 100644 --- a/ArmPlatformPkg/PrePeiCore/Exception.S +++ b/ArmPlatformPkg/PrePeiCore/Exception.S @@ -84,20 +84,20 @@ _DefaultReserved: # Switch to SVC for common stack cps #0x13 mov r0, #5 - blx PeiCommonExceptionEntry + blx ASM_PFX(PeiCommonExceptionEntry) _DefaultIrq: sub r1, LR, #4 # Switch to SVC for common stack cps #0x13 mov r0, #6 - blx PeiCommonExceptionEntry + blx ASM_PFX(PeiCommonExceptionEntry) _DefaultFiq: sub r1, LR, #4 # Switch to SVC for common stack cps #0x13 mov r0, #7 - blx PeiCommonExceptionEntry + blx ASM_PFX(PeiCommonExceptionEntry) -.end
+ END
|