mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/PeiCore: Fix ConverSinglePpiPointer () typo.
Rename ConverSinglePpiPointer () to ConvertSinglePpiPointer (). Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Marvin Haeuser <Marvin.Haeuser@outlook.com> Reviewed-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Feng Tian <feng.tian@intel.com>
This commit is contained in:
parent
adb6ac2563
commit
de74668f5e
|
@ -48,7 +48,7 @@ InitializePpiServices (
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
ConverSinglePpiPointer (
|
ConvertSinglePpiPointer (
|
||||||
IN PEI_PPI_LIST_POINTERS *PpiPointer,
|
IN PEI_PPI_LIST_POINTERS *PpiPointer,
|
||||||
IN UINTN TempBottom,
|
IN UINTN TempBottom,
|
||||||
IN UINTN TempTop,
|
IN UINTN TempTop,
|
||||||
|
@ -124,7 +124,7 @@ ConvertPpiPointers (
|
||||||
//
|
//
|
||||||
// Convert PPI pointer in old Heap
|
// Convert PPI pointer in old Heap
|
||||||
//
|
//
|
||||||
ConverSinglePpiPointer (
|
ConvertSinglePpiPointer (
|
||||||
&PrivateData->PpiData.PpiListPtrs[Index],
|
&PrivateData->PpiData.PpiListPtrs[Index],
|
||||||
(UINTN)SecCoreData->PeiTemporaryRamBase,
|
(UINTN)SecCoreData->PeiTemporaryRamBase,
|
||||||
(UINTN)SecCoreData->PeiTemporaryRamBase + SecCoreData->PeiTemporaryRamSize,
|
(UINTN)SecCoreData->PeiTemporaryRamBase + SecCoreData->PeiTemporaryRamSize,
|
||||||
|
@ -135,7 +135,7 @@ ConvertPpiPointers (
|
||||||
//
|
//
|
||||||
// Convert PPI pointer in old Stack
|
// Convert PPI pointer in old Stack
|
||||||
//
|
//
|
||||||
ConverSinglePpiPointer (
|
ConvertSinglePpiPointer (
|
||||||
&PrivateData->PpiData.PpiListPtrs[Index],
|
&PrivateData->PpiData.PpiListPtrs[Index],
|
||||||
(UINTN)SecCoreData->StackBase,
|
(UINTN)SecCoreData->StackBase,
|
||||||
(UINTN)SecCoreData->StackBase + SecCoreData->StackSize,
|
(UINTN)SecCoreData->StackBase + SecCoreData->StackSize,
|
||||||
|
@ -151,7 +151,7 @@ ConvertPpiPointers (
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
ConverSinglePpiPointer (
|
ConvertSinglePpiPointer (
|
||||||
&PrivateData->PpiData.PpiListPtrs[Index],
|
&PrivateData->PpiData.PpiListPtrs[Index],
|
||||||
(UINTN)PrivateData->HoleData[IndexHole].Base,
|
(UINTN)PrivateData->HoleData[IndexHole].Base,
|
||||||
(UINTN)PrivateData->HoleData[IndexHole].Base + PrivateData->HoleData[IndexHole].Size,
|
(UINTN)PrivateData->HoleData[IndexHole].Base + PrivateData->HoleData[IndexHole].Size,
|
||||||
|
|
Loading…
Reference in New Issue