diff --git a/MdeModulePkg/Core/DxeIplPeim/DxeIpl.h b/MdeModulePkg/Core/DxeIplPeim/DxeIpl.h index 8f3538e4d1..9c542ef2e8 100644 --- a/MdeModulePkg/Core/DxeIplPeim/DxeIpl.h +++ b/MdeModulePkg/Core/DxeIplPeim/DxeIpl.h @@ -25,7 +25,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include #include -#include +#include #include #include diff --git a/MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf b/MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf index c3dd5f6719..72bfe453a4 100644 --- a/MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf +++ b/MdeModulePkg/Core/DxeIplPeim/DxeIpl.inf @@ -80,7 +80,7 @@ gEfiPeiDecompressPpiGuid ## SOMETIMES_PRODUCES gEfiPeiReadOnlyVariable2PpiGuid ## SOMETIMES_CONSUMES gEfiPeiLoadFilePpiGuid ## CONSUMES - gEfiPeiS3ResumePpiGuid ## SOMETIMES_CONSUMES(Consumed on S3 boot path) + gEfiPeiS3Resume2PpiGuid ## SOMETIMES_CONSUMES(Consumed on S3 boot path) gEfiPeiRecoveryModulePpiGuid ## SOMETIMES_CONSUMES(Consumed on recovery boot path) [Guids] diff --git a/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c b/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c index 4a0c9ddb67..1c967ab170 100644 --- a/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c +++ b/MdeModulePkg/Core/DxeIplPeim/DxeLoad.c @@ -158,7 +158,7 @@ DxeLoadCore ( UINTN Instance; UINT32 AuthenticationState; UINTN DataSize; - EFI_PEI_S3_RESUME_PPI *S3Resume; + EFI_PEI_S3_RESUME2_PPI *S3Resume; EFI_PEI_RECOVERY_MODULE_PPI *PeiRecovery; EFI_MEMORY_TYPE_INFORMATION MemoryData[EfiMaxMemoryType + 1]; @@ -169,14 +169,14 @@ DxeLoadCore ( if (BootMode == BOOT_ON_S3_RESUME) { Status = PeiServicesLocatePpi ( - &gEfiPeiS3ResumePpiGuid, + &gEfiPeiS3Resume2PpiGuid, 0, NULL, (VOID **) &S3Resume ); ASSERT_EFI_ERROR (Status); - Status = S3Resume->S3RestoreConfig (PeiServices); + Status = S3Resume->S3RestoreConfig2 (S3Resume); ASSERT_EFI_ERROR (Status); } else if (BootMode == BOOT_IN_RECOVERY_MODE) { Status = PeiServicesLocatePpi (