diff options
Diffstat (limited to 'IntelFrameworkModulePkg')
-rw-r--r-- | IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciEnumerator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciEnumerator.c b/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciEnumerator.c index c8cd57a514..b14a018994 100644 --- a/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciEnumerator.c +++ b/IntelFrameworkModulePkg/Bus/Pci/PciBusDxe/PciEnumerator.c @@ -1727,9 +1727,9 @@ NotifyPhase ( HostBridgeHandle = PciRootBridgeIo->ParentHandle;
//
- // Call PlatformPci::PhaseNotify() if the protocol is present.
+ // Call PlatformPci::PlatformNotify() if the protocol is present.
//
- gPciPlatformProtocol->PhaseNotify (
+ gPciPlatformProtocol->PlatformNotify (
gPciPlatformProtocol,
HostBridgeHandle,
Phase,
@@ -1744,9 +1744,9 @@ NotifyPhase ( if (gPciPlatformProtocol != NULL) {
//
- // Call PlatformPci::PhaseNotify() if the protocol is present.
+ // Call PlatformPci::PlatformNotify() if the protocol is present.
//
- gPciPlatformProtocol->PhaseNotify (
+ gPciPlatformProtocol->PlatformNotify (
gPciPlatformProtocol,
HostBridgeHandle,
Phase,
|