Change the PciBusDxe driver to install the PCI enumeration complete GUID in the PCI host bridge handle to follow PI Spec 1.3.
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Elvin Li <elvin.li@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@14553 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6e67fec07f
commit
d838c7449f
|
@ -29,7 +29,6 @@ PciEnumerator (
|
||||||
IN EFI_HANDLE Controller
|
IN EFI_HANDLE Controller
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
EFI_HANDLE Handle;
|
|
||||||
EFI_HANDLE HostBridgeHandle;
|
EFI_HANDLE HostBridgeHandle;
|
||||||
EFI_STATUS Status;
|
EFI_STATUS Status;
|
||||||
EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL *PciResAlloc;
|
EFI_PCI_HOST_BRIDGE_RESOURCE_ALLOCATION_PROTOCOL *PciResAlloc;
|
||||||
|
@ -134,9 +133,8 @@ PciEnumerator (
|
||||||
|
|
||||||
gFullEnumeration = FALSE;
|
gFullEnumeration = FALSE;
|
||||||
|
|
||||||
Handle = NULL;
|
|
||||||
Status = gBS->InstallProtocolInterface (
|
Status = gBS->InstallProtocolInterface (
|
||||||
&Handle,
|
&HostBridgeHandle,
|
||||||
&gEfiPciEnumerationCompleteProtocolGuid,
|
&gEfiPciEnumerationCompleteProtocolGuid,
|
||||||
EFI_NATIVE_INTERFACE,
|
EFI_NATIVE_INTERFACE,
|
||||||
NULL
|
NULL
|
||||||
|
|
Loading…
Reference in New Issue