mirror of https://github.com/acidanthera/audk.git
rollback for fix scsi disk detection issue.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8927 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
429cac9c17
commit
f3f33e1da8
|
@ -767,7 +767,6 @@ StartPciDevices (
|
||||||
IN EFI_HANDLE Controller
|
IN EFI_HANDLE Controller
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
EFI_STATUS Status;
|
|
||||||
PCI_IO_DEVICE *RootBridge;
|
PCI_IO_DEVICE *RootBridge;
|
||||||
EFI_HANDLE ThisHostBridge;
|
EFI_HANDLE ThisHostBridge;
|
||||||
LIST_ENTRY *CurrentLink;
|
LIST_ENTRY *CurrentLink;
|
||||||
|
@ -785,16 +784,13 @@ StartPciDevices (
|
||||||
// Locate the right root bridge to start
|
// Locate the right root bridge to start
|
||||||
//
|
//
|
||||||
if (RootBridge->PciRootBridgeIo->ParentHandle == ThisHostBridge) {
|
if (RootBridge->PciRootBridgeIo->ParentHandle == ThisHostBridge) {
|
||||||
Status = StartPciDevicesOnBridge (
|
StartPciDevicesOnBridge (
|
||||||
RootBridge->Handle,
|
RootBridge->Handle,
|
||||||
RootBridge,
|
RootBridge,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
);
|
);
|
||||||
if (EFI_ERROR (Status)) {
|
|
||||||
return Status;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CurrentLink = CurrentLink->ForwardLink;
|
CurrentLink = CurrentLink->ForwardLink;
|
||||||
|
|
Loading…
Reference in New Issue