diff --git a/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c b/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c index 3632d84375..8bfb1890b1 100644 --- a/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c +++ b/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c @@ -261,7 +261,7 @@ AcpiPlatformEntryPoint ( if (XenDetected ()) { Status = InstallXenTables (AcpiTable); } else { - Status = InstallAllQemuLinkedTables (AcpiTable); + Status = InstallQemuFwCfgTables (AcpiTable); } if (EFI_ERROR (Status)) { diff --git a/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h b/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h index e757233845..ae11e79e11 100644 --- a/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h +++ b/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h @@ -63,8 +63,9 @@ InstallXenTables ( EFI_STATUS EFIAPI -InstallAllQemuLinkedTables ( +InstallQemuFwCfgTables ( IN EFI_ACPI_TABLE_PROTOCOL *AcpiProtocol ); + #endif diff --git a/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c b/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c index a4a71f9c3b..806446ee7f 100644 --- a/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c +++ b/OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c @@ -552,7 +552,7 @@ Process2ndPassCmdAddPointer ( **/ EFI_STATUS EFIAPI -InstallAllQemuLinkedTables ( +InstallQemuFwCfgTables ( IN EFI_ACPI_TABLE_PROTOCOL *AcpiProtocol ) { @@ -716,6 +716,6 @@ QemuFwCfgAcpiPlatformEntryPoint ( ); ASSERT_EFI_ERROR (Status); - Status = InstallAllQemuLinkedTables (AcpiTable); + Status = InstallQemuFwCfgTables (AcpiTable); return Status; }