diff mbox series

[v2,18/23] hw/i386: Rename acpi-build.c -> acpi-pc.c

Message ID 20210616204328.2611406-19-philmd@redhat.com (mailing list archive)
State New, archived
Headers show
Series target/i386/sev: Housekeeping (OVMF + SEV-disabled binaries) | expand

Commit Message

Philippe Mathieu-Daudé June 16, 2021, 8:43 p.m. UTC
The acpi-build.c file contains routines common to the QEMU "PC"
machines (Q35+ICH & i440FX+PIIX), rename it as acpi-pc.c.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 hw/i386/{acpi-build.c => acpi-pc.c} | 0
 hw/i386/meson.build                 | 2 +-
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename hw/i386/{acpi-build.c => acpi-pc.c} (100%)
diff mbox series

Patch

diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-pc.c
similarity index 100%
rename from hw/i386/acpi-build.c
rename to hw/i386/acpi-pc.c
diff --git a/hw/i386/meson.build b/hw/i386/meson.build
index e5d109f5c64..f95ed7d4efe 100644
--- a/hw/i386/meson.build
+++ b/hw/i386/meson.build
@@ -22,7 +22,7 @@ 
 i386_ss.add(when: 'CONFIG_PC', if_true: files(
   'pc.c',
   'pc_sysfw.c',
-  'acpi-build.c',
+  'acpi-pc.c',
   'port92.c'))
 
 subdir('kvm')