diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-13 09:17:38 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-11-13 09:17:38 +0000 |
commit | 187f1a5b3a6202bc61796260b38f8b86383d9bfc (patch) | |
tree | 3d8d1a0961ab41e84e8cd3cfab9854e1ce89a596 /MdeModulePkg/Core/Pei | |
parent | d9efa86d17fb0640dffd9609aa7a0fec9d58ddb2 (diff) | |
download | edk2-platforms-187f1a5b3a6202bc61796260b38f8b86383d9bfc.tar.xz |
Rename PiLibInstallFvInfoPpi() to PeiServicesInstallFvInfoPpi() and remove the reference of PeiPiLib, it has been merged to PeiServicesLib
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6522 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core/Pei')
-rw-r--r-- | MdeModulePkg/Core/Pei/FwVol/FwVol.c | 4 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/PeiMain.h | 1 | ||||
-rw-r--r-- | MdeModulePkg/Core/Pei/PeiMain.inf | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/MdeModulePkg/Core/Pei/FwVol/FwVol.c b/MdeModulePkg/Core/Pei/FwVol/FwVol.c index ce4501c1db..f4d426cf53 100644 --- a/MdeModulePkg/Core/Pei/FwVol/FwVol.c +++ b/MdeModulePkg/Core/Pei/FwVol/FwVol.c @@ -654,7 +654,7 @@ PeiFvFindNextVolume ( // If Not Found, Install FvInfo Ppi for it.
//
if (!Match) {
- PiLibInstallFvInfoPpi (
+ PeiServicesInstallFvInfoPpi (
NULL,
(VOID *)(UINTN)FvHob->BaseAddress,
(UINT32)FvHob->Length,
@@ -913,7 +913,7 @@ ProcessFvFile ( //
// Install FvPpi and Build FvHob
//
- PiLibInstallFvInfoPpi (
+ PeiServicesInstallFvInfoPpi (
NULL,
FvImageInfo.FvStart,
(UINT32) FvImageInfo.FvSize,
diff --git a/MdeModulePkg/Core/Pei/PeiMain.h b/MdeModulePkg/Core/Pei/PeiMain.h index c3102950c5..8e0cedd9b4 100644 --- a/MdeModulePkg/Core/Pei/PeiMain.h +++ b/MdeModulePkg/Core/Pei/PeiMain.h @@ -43,7 +43,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include <IndustryStandard/PeImage.h>
#include <Library/PeiServicesTablePointerLib.h>
#include <Library/MemoryAllocationLib.h>
-#include <Library/PeiPiLib.h>
#include <Guid/FirmwareFileSystem2.h>
#include <Guid/AprioriFileName.h>
diff --git a/MdeModulePkg/Core/Pei/PeiMain.inf b/MdeModulePkg/Core/Pei/PeiMain.inf index cc2b1c097f..24486fe83f 100644 --- a/MdeModulePkg/Core/Pei/PeiMain.inf +++ b/MdeModulePkg/Core/Pei/PeiMain.inf @@ -67,7 +67,6 @@ MemoryAllocationLib
CacheMaintenanceLib
PeCoffLib
- PeiPiLib
PeiServicesTablePointerLib
|