OvmfPkg: Use BZ3937_EFI_RESOURCE_MEMORY_UNACCEPTED defined in MdeModulePkg
RFC: https://bugzilla.tianocore.org/show_bug.cgi?id=3937 BZ3937_EFI_RESOURCE_MEMORY_UNACCEPTED is defined in MdeModulePkg. The files which use the definition are updated as well. Cc: Erdem Aktas <erdemaktas@google.com> Cc: Gerd Hoffmann <kraxel@redhat.com> Cc: James Bottomley <jejb@linux.ibm.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Tom Lendacky <thomas.lendacky@amd.com> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Min Xu <min.m.xu@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
This commit is contained in:
@@ -20,10 +20,9 @@
|
||||
#include <IndustryStandard/UefiTcgPlatform.h>
|
||||
#include <Library/PlatformInitLib.h>
|
||||
#include <OvmfPlatforms.h>
|
||||
#include <Pi/PrePiHob.h>
|
||||
#include "PeilessStartupInternal.h"
|
||||
|
||||
#define EFI_RESOURCE_MEMORY_UNACCEPTED 7
|
||||
|
||||
/**
|
||||
* Construct the HobList in SEC phase.
|
||||
*
|
||||
@@ -92,7 +91,7 @@ ConstructFwHobList (
|
||||
//
|
||||
while (!END_OF_HOB_LIST (Hob)) {
|
||||
if (Hob.Header->HobType == EFI_HOB_TYPE_RESOURCE_DESCRIPTOR) {
|
||||
if (Hob.ResourceDescriptor->ResourceType == EFI_RESOURCE_MEMORY_UNACCEPTED) {
|
||||
if (Hob.ResourceDescriptor->ResourceType == BZ3937_EFI_RESOURCE_MEMORY_UNACCEPTED) {
|
||||
PhysicalEnd = Hob.ResourceDescriptor->PhysicalStart + Hob.ResourceDescriptor->ResourceLength;
|
||||
ResourceLength = Hob.ResourceDescriptor->ResourceLength;
|
||||
|
||||
|
Reference in New Issue
Block a user