summaryrefslogtreecommitdiff
path: root/Core/UefiCpuPkg
diff options
context:
space:
mode:
authorJeff Fan <jeff.fan@intel.com>2017-04-24 10:06:31 +0800
committerGuo Mang <mang.guo@intel.com>2017-07-12 11:24:28 +0800
commite0b0bb4224550e3c15f1008d5475fee9de26f84a (patch)
tree00ea1e92ac8a359c631bef109d763915a51ac40d /Core/UefiCpuPkg
parent55ebbaa92c6e06d769fdaad5514639b6389280a7 (diff)
downloadedk2-platforms-e0b0bb4224550e3c15f1008d5475fee9de26f84a.tar.xz
PeCoffGetEntryPointLib: Fix spelling issue
*Serach* should be *Search* Cc: Liming Gao <liming.gao@intel.com> Cc: Feng Tian <feng.tian@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> (cherry picked from commit 9e981317be20ab85bb68a670e79735f9685a3348)
Diffstat (limited to 'Core/UefiCpuPkg')
-rw-r--r--Core/UefiCpuPkg/Library/CpuExceptionHandlerLib/CpuExceptionCommon.c2
-rwxr-xr-xCore/UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Core/UefiCpuPkg/Library/CpuExceptionHandlerLib/CpuExceptionCommon.c b/Core/UefiCpuPkg/Library/CpuExceptionHandlerLib/CpuExceptionCommon.c
index 78ee182e8d..dbfaae1d30 100644
--- a/Core/UefiCpuPkg/Library/CpuExceptionHandlerLib/CpuExceptionCommon.c
+++ b/Core/UefiCpuPkg/Library/CpuExceptionHandlerLib/CpuExceptionCommon.c
@@ -120,7 +120,7 @@ DumpModuleImageInfo (
VOID *PdbPointer;
VOID *EntryPoint;
- Pe32Data = PeCoffSerachImageBase (CurrentEip);
+ Pe32Data = PeCoffSearchImageBase (CurrentEip);
if (Pe32Data == 0) {
InternalPrintMessage ("!!!! Can't find image information. !!!!\n");
} else {
diff --git a/Core/UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.c b/Core/UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.c
index 2cb0bbcff6..2d6b572b4e 100755
--- a/Core/UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.c
+++ b/Core/UefiCpuPkg/PiSmmCpuDxeSmm/PiSmmCpuDxeSmm.c
@@ -178,7 +178,7 @@ DumpModuleInfoByIp (
//
// Find Image Base
//
- Pe32Data = PeCoffSerachImageBase (CallerIpAddress);
+ Pe32Data = PeCoffSearchImageBase (CallerIpAddress);
if (Pe32Data != 0) {
DEBUG ((DEBUG_ERROR, "It is invoked from the instruction before IP(0x%p)", (VOID *) CallerIpAddress));
PdbPointer = PeCoffLoaderGetPdbPointer ((VOID *) Pe32Data);