summaryrefslogtreecommitdiff
path: root/ArmPlatformPkg
diff options
context:
space:
mode:
authoroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-04-27 17:06:17 +0000
committeroliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524>2011-04-27 17:06:17 +0000
commite77406fafeea44c4777d73203527252ab98d3e53 (patch)
treec15f18896308904932482a990b03024d4c4b157b /ArmPlatformPkg
parentef83918efb6e02f9ee0155303d772e4b2184eae3 (diff)
downloadedk2-platforms-e77406fafeea44c4777d73203527252ab98d3e53.tar.xz
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
Diffstat (limited to 'ArmPlatformPkg')
-rw-r--r--ArmPlatformPkg/PrePeiCore/Exception.S8
-rw-r--r--ArmPlatformPkg/Sec/Exception.S8
2 files changed, 8 insertions, 8 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
diff --git a/ArmPlatformPkg/Sec/Exception.S b/ArmPlatformPkg/Sec/Exception.S
index 4c7f780dbe..067e5097cf 100644
--- a/ArmPlatformPkg/Sec/Exception.S
+++ b/ArmPlatformPkg/Sec/Exception.S
@@ -84,20 +84,20 @@ _DefaultReserved:
# Switch to SVC for common stack
cps #0x13
mov r0, #5
- blx SecCommonExceptionEntry
+ blx ASM_PFX(SecCommonExceptionEntry)
_DefaultIrq:
sub r1, LR, #4
# Switch to SVC for common stack
cps #0x13
mov r0, #6
- blx SecCommonExceptionEntry
+ blx ASM_PFX(SecCommonExceptionEntry)
_DefaultFiq:
sub r1, LR, #4
# Switch to SVC for common stack
cps #0x13
mov r0, #7
- blx SecCommonExceptionEntry
-
+ blx ASM_PFX(SecCommonExceptionEntry)
+ END