diff options
author | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-07-04 20:23:21 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-07-04 20:23:21 +0000 |
commit | ce88684e2af0103e7ffaea58a26b3fae16f70367 (patch) | |
tree | 466d7fb7d4a2060ac9d18cc908f904559adb7579 /ArmPlatformPkg/PrePi | |
parent | 3bb46df2a3456929e2776470a5547e4827937853 (diff) | |
download | edk2-ce88684e2af0103e7ffaea58a26b3fae16f70367.tar.gz edk2-ce88684e2af0103e7ffaea58a26b3fae16f70367.tar.bz2 edk2-ce88684e2af0103e7ffaea58a26b3fae16f70367.zip |
ARM Packages: Fixed mispellings
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13502 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg/PrePi')
-rwxr-xr-x | ArmPlatformPkg/PrePi/ModuleEntryPoint.S | 2 | ||||
-rw-r--r-- | ArmPlatformPkg/PrePi/ModuleEntryPoint.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ArmPlatformPkg/PrePi/ModuleEntryPoint.S b/ArmPlatformPkg/PrePi/ModuleEntryPoint.S index 845ae208b2..a5593d7290 100755 --- a/ArmPlatformPkg/PrePi/ModuleEntryPoint.S +++ b/ArmPlatformPkg/PrePi/ModuleEntryPoint.S @@ -108,7 +108,7 @@ _GetStackBaseMpCore: LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), r2)
sub r7, r1, r2
- // Stack for the secondary core = Number of Cluster * (4 Core per cluster) * SecondaryStackSize
+ // Stack for the secondary core = Number of Clusters * (4 Cores per cluster) * SecondaryStackSize
LoadConstantToReg (FixedPcdGet32(PcdClusterCount), r2)
lsl r2, r2, #2
LoadConstantToReg (FixedPcdGet32(PcdCPUCoreSecondaryStackSize), r3)
diff --git a/ArmPlatformPkg/PrePi/ModuleEntryPoint.asm b/ArmPlatformPkg/PrePi/ModuleEntryPoint.asm index 780371c15c..0c7299a995 100644 --- a/ArmPlatformPkg/PrePi/ModuleEntryPoint.asm +++ b/ArmPlatformPkg/PrePi/ModuleEntryPoint.asm @@ -109,7 +109,7 @@ _GetStackBaseMpCore LoadConstantToReg (FixedPcdGet32(PcdCPUCorePrimaryStackSize), r2)
sub r7, r1, r2
- // Stack for the secondary core = Number of Cluster * (4 Core per cluster) * SecondaryStackSize
+ // Stack for the secondary core = Number of Clusters * (4 Cores per cluster) * SecondaryStackSize
LoadConstantToReg (FixedPcdGet32(PcdClusterCount), r2)
lsl r2, r2, #2
LoadConstantToReg (FixedPcdGet32(PcdCPUCoreSecondaryStackSize), r3)
|