summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg/Core/Pei
diff options
context:
space:
mode:
authorShumin Qiu <shumin.qiu@intel.com>2015-03-13 08:13:16 +0000
committershenshushi <shenshushi@Edk2>2015-03-13 08:13:16 +0000
commite50a226b2ff490d33fe2f35aa52f5902f7fa91b0 (patch)
treedeb13fcc61623aa43bacfe1be9ee78e0bb91eb31 /MdeModulePkg/Core/Pei
parent207f04793e69843ec34078b2f082a0e4660a433a (diff)
downloadedk2-e50a226b2ff490d33fe2f35aa52f5902f7fa91b0.tar.gz
edk2-e50a226b2ff490d33fe2f35aa52f5902f7fa91b0.tar.bz2
edk2-e50a226b2ff490d33fe2f35aa52f5902f7fa91b0.zip
MdeModulePkg: Fix typo.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Shumin Qiu <shumin.qiu@intel.com> Reviewed-by: Feng Tian <feng.tian@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17045 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core/Pei')
-rw-r--r--MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
index 4004a3ad62..b9c3fb3bdb 100644
--- a/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
+++ b/MdeModulePkg/Core/Pei/Dispatcher/Dispatcher.c
@@ -1,7 +1,7 @@
/** @file
EFI PEI Core dispatch services
-Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
@@ -863,7 +863,7 @@ PeiDispatcher (
if (Private->SwitchStackSignal) {
//
- // Before switch stack from temporary memory to permenent memory, caculate the heap and stack
+ // Before switch stack from temporary memory to permenent memory, calculate the heap and stack
// usage in temporary memory for debuging.
//
DEBUG_CODE_BEGIN ();
@@ -913,7 +913,7 @@ PeiDispatcher (
ASSERT (NewStackSize >= SecCoreData->StackSize);
//
- // Caculate stack offset and heap offset between temporary memory and new permement
+ // Calculate stack offset and heap offset between temporary memory and new permement
// memory seperately.
//
TopOfOldStack = (UINTN)SecCoreData->StackBase + SecCoreData->StackSize;
@@ -969,7 +969,7 @@ PeiDispatcher (
DEBUG ((EFI_D_INFO, "Heap Offset = 0x%lX Stack Offset = 0x%lX\n", (UINT64) Private->HeapOffset, (UINT64) Private->StackOffset));
//
- // Caculate new HandOffTable and PrivateData address in permanent memory's stack
+ // Calculate new HandOffTable and PrivateData address in permanent memory's stack
//
if (StackOffsetPositive) {
SecCoreData = (CONST EFI_SEC_PEI_HAND_OFF *)((UINTN)(VOID *)SecCoreData + StackOffset);