diff options
author | Jordan Justen <jordan.l.justen@intel.com> | 2015-02-19 23:45:50 +0000 |
---|---|---|
committer | jljusten <jljusten@Edk2> | 2015-02-19 23:45:50 +0000 |
commit | f186536bdd64424f7ee3f2b1909e0263dbb1e45f (patch) | |
tree | 55e21b9041e4bfeb82b0ba5305673973c48354a9 /OvmfPkg | |
parent | b70c4d07f35df5c5acdb87b11dabaac53288ea03 (diff) | |
download | edk2-f186536bdd64424f7ee3f2b1909e0263dbb1e45f.zip edk2-f186536bdd64424f7ee3f2b1909e0263dbb1e45f.tar.gz edk2-f186536bdd64424f7ee3f2b1909e0263dbb1e45f.tar.bz2 |
OvmfPkg/AcpiPlatformDxe: InstallAllQemuLinkedTables => InstallQemuFwCfgTables
This name better aligns with InstallXenTables and InstallOvmfFvTables.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16884 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg')
-rw-r--r-- | OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c | 2 | ||||
-rw-r--r-- | OvmfPkg/AcpiPlatformDxe/AcpiPlatform.h | 3 | ||||
-rw-r--r-- | OvmfPkg/AcpiPlatformDxe/QemuFwCfgAcpi.c | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c b/OvmfPkg/AcpiPlatformDxe/AcpiPlatform.c index 3632d84..8bfb189 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 e757233..ae11e79 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 a4a71f9..806446e 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;
}
|