summaryrefslogtreecommitdiffstats
path: root/ArmPkg/Drivers/CpuDxe/CpuMpCore.c
diff options
context:
space:
mode:
authorAntoine Cœur <coeur@gmx.fr>2019-02-06 23:39:35 +0800
committerLeif Lindholm <leif.lindholm@linaro.org>2019-07-04 12:20:28 +0100
commitff5fef1428dafc8f73e1f5d63966ef5c9bd8c420 (patch)
treee101e619122fa00859d5d776a026556ef7401e76 /ArmPkg/Drivers/CpuDxe/CpuMpCore.c
parent080981d72dcbb782ad73716c439639324b0aa4dd (diff)
downloadedk2-ff5fef1428dafc8f73e1f5d63966ef5c9bd8c420.tar.gz
edk2-ff5fef1428dafc8f73e1f5d63966ef5c9bd8c420.tar.bz2
edk2-ff5fef1428dafc8f73e1f5d63966ef5c9bd8c420.zip
ArmPkg: Fix various typos
Fix various typos in ArmPkg. Signed-off-by: Coeur <coeur@gmx.fr> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'ArmPkg/Drivers/CpuDxe/CpuMpCore.c')
-rw-r--r--ArmPkg/Drivers/CpuDxe/CpuMpCore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ArmPkg/Drivers/CpuDxe/CpuMpCore.c b/ArmPkg/Drivers/CpuDxe/CpuMpCore.c
index af0fb9b2e9..d16ae39792 100644
--- a/ArmPkg/Drivers/CpuDxe/CpuMpCore.c
+++ b/ArmPkg/Drivers/CpuDxe/CpuMpCore.c
@@ -61,7 +61,7 @@ PublishArmProcessorTable (
// Allocate Runtime memory for ARM processor table
ArmProcessorTable = (ARM_PROCESSOR_TABLE*)AllocateRuntimePool(sizeof(ARM_PROCESSOR_TABLE));
- // Check if the memory allocation is succesful or not
+ // Check if the memory allocation is successful or not
ASSERT(NULL != ArmProcessorTable);
// Set ARM processor table to default values
@@ -81,7 +81,7 @@ PublishArmProcessorTable (
ArmProcessorTable->ArmCpus = (ARM_CORE_INFO*)AllocateRuntimePool (
ArmProcessorTable->NumberOfEntries * sizeof(ARM_CORE_INFO));
- // Check if the memory allocation is succesful or not
+ // Check if the memory allocation is successful or not
ASSERT(NULL != ArmProcessorTable->ArmCpus);
// Copy ARM Processor Table data from HOB list to newly allocated memory