ArmPlatformPkg: Add missing ASM_PFX() macro in exception call back

The ASM_PFX() was missing for some calls of the common exception callback.



git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11597 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
oliviermartin 2011-04-27 17:06:17 +00:00
parent ef83918efb
commit e77406fafe
2 changed files with 8 additions and 8 deletions

View File

@ -84,20 +84,20 @@ _DefaultReserved:
# Switch to SVC for common stack # Switch to SVC for common stack
cps #0x13 cps #0x13
mov r0, #5 mov r0, #5
blx PeiCommonExceptionEntry blx ASM_PFX(PeiCommonExceptionEntry)
_DefaultIrq: _DefaultIrq:
sub r1, LR, #4 sub r1, LR, #4
# Switch to SVC for common stack # Switch to SVC for common stack
cps #0x13 cps #0x13
mov r0, #6 mov r0, #6
blx PeiCommonExceptionEntry blx ASM_PFX(PeiCommonExceptionEntry)
_DefaultFiq: _DefaultFiq:
sub r1, LR, #4 sub r1, LR, #4
# Switch to SVC for common stack # Switch to SVC for common stack
cps #0x13 cps #0x13
mov r0, #7 mov r0, #7
blx PeiCommonExceptionEntry blx ASM_PFX(PeiCommonExceptionEntry)
.end END

View File

@ -84,20 +84,20 @@ _DefaultReserved:
# Switch to SVC for common stack # Switch to SVC for common stack
cps #0x13 cps #0x13
mov r0, #5 mov r0, #5
blx SecCommonExceptionEntry blx ASM_PFX(SecCommonExceptionEntry)
_DefaultIrq: _DefaultIrq:
sub r1, LR, #4 sub r1, LR, #4
# Switch to SVC for common stack # Switch to SVC for common stack
cps #0x13 cps #0x13
mov r0, #6 mov r0, #6
blx SecCommonExceptionEntry blx ASM_PFX(SecCommonExceptionEntry)
_DefaultFiq: _DefaultFiq:
sub r1, LR, #4 sub r1, LR, #4
# Switch to SVC for common stack # Switch to SVC for common stack
cps #0x13 cps #0x13
mov r0, #7 mov r0, #7
blx SecCommonExceptionEntry blx ASM_PFX(SecCommonExceptionEntry)
END