diff options
Diffstat (limited to 'OvmfPkg/PlatformPei/Fv.c')
-rw-r--r-- | OvmfPkg/PlatformPei/Fv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OvmfPkg/PlatformPei/Fv.c b/OvmfPkg/PlatformPei/Fv.c index fbdb597043..1ee417a091 100644 --- a/OvmfPkg/PlatformPei/Fv.c +++ b/OvmfPkg/PlatformPei/Fv.c @@ -36,12 +36,12 @@ PeiFvInitialization ( //
// Create a memory allocation HOB for the PEI FV.
//
- // This is marked as ACPI NVS so it will still be available on S3 resume.
+ // Note: This should be changed to ACPI NVS when S3 resume is enabled.
//
BuildMemoryAllocationHob (
PcdGet32 (PcdOvmfPeiMemFvBase),
PcdGet32 (PcdOvmfPeiMemFvSize),
- EfiACPIMemoryNVS
+ EfiBootServicesData
);
//
|