summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYao, Jiewen <jiewen.yao@intel.com>2015-02-25 03:11:05 +0000
committerjyao1 <jyao1@Edk2>2015-02-25 03:11:05 +0000
commit2a93f2c306323b4fb1019f0570202f4c0a75d418 (patch)
tree3dde0542091a2007fbaff87f57506c494f146374
parent92141e17772f766960bb6984543d89af21ccfb21 (diff)
Fix typo.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: "Yao, Jiewen" <jiewen.yao@intel.com> Reviewed-by: "Fan, Jeff" <jeff.fan@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16919 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r--MdePkg/Library/SmmMemLib/SmmMemLib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/SmmMemLib/SmmMemLib.c b/MdePkg/Library/SmmMemLib/SmmMemLib.c
index 21f67d219..420c5a755 100644
--- a/MdePkg/Library/SmmMemLib/SmmMemLib.c
+++ b/MdePkg/Library/SmmMemLib/SmmMemLib.c
@@ -38,11 +38,11 @@ UINTN mSmmMemLibInternalSmramCount;
EFI_PHYSICAL_ADDRESS mSmmMemLibInternalMaximumSupportAddress = 0;
/**
- Caculate and save the maximum support address.
+ Calculate and save the maximum support address.
**/
VOID
-SmmMemLibInternalCaculateMaximumSupportAddress (
+SmmMemLibInternalCalculateMaximumSupportAddress (
VOID
)
{
@@ -315,9 +315,9 @@ SmmMemLibConstructor (
mSmmMemLibInternalSmramCount = Size / sizeof (EFI_SMRAM_DESCRIPTOR);
//
- // Caculate and save maximum support address
+ // Calculate and save maximum support address
//
- SmmMemLibInternalCaculateMaximumSupportAddress ();
+ SmmMemLibInternalCalculateMaximumSupportAddress ();
return EFI_SUCCESS;
}