OvmfPkg/Platform: unfix PcdPciExpressBaseAddress
Will be set by FdtPciHostBridgeLib, so it can't be an fixed when we want use that library. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
committed by
mergify[bot]
parent
b57911c84c
commit
47f44097eb
@@ -61,8 +61,8 @@ PlatformQemuUc32BaseInitialization (
|
||||
// [PcdPciExpressBaseAddress, 4GB) range require a very small number of
|
||||
// variable MTRRs (preferably 1 or 2).
|
||||
//
|
||||
ASSERT (FixedPcdGet64 (PcdPciExpressBaseAddress) <= MAX_UINT32);
|
||||
PlatformInfoHob->Uc32Base = (UINT32)FixedPcdGet64 (PcdPciExpressBaseAddress);
|
||||
ASSERT (PcdGet64 (PcdPciExpressBaseAddress) <= MAX_UINT32);
|
||||
PlatformInfoHob->Uc32Base = (UINT32)PcdGet64 (PcdPciExpressBaseAddress);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user