diff options
author | Igor Mammedov <imammedo@redhat.com> | 2016-05-17 16:43:01 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-06-07 15:36:54 +0300 |
commit | 672a28722758bd4754a1bb31ee497b5d007d1be6 (patch) | |
tree | 52cb5a39ef3d6610b77958888f017cebfaa7e620 /hw/acpi/Makefile.objs | |
parent | 96e3e12bff14a16e27072619f571bc7b400145c3 (diff) | |
download | qemu-672a28722758bd4754a1bb31ee497b5d007d1be6.zip qemu-672a28722758bd4754a1bb31ee497b5d007d1be6.tar.gz qemu-672a28722758bd4754a1bb31ee497b5d007d1be6.tar.bz2 |
pc: acpi: consolidate legacy CPU hotplug in one file
Since AML part of CPU hotplug is tightly coupled with
its hardware part (IO port layout/protocol), move
build_legacy_cpu_hotplug_aml() to cpu_hotplug.c
and remove empty cpu_hotplug_acpi_table.c
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Marcel Apfelbaum <marcel@redhat.com>
Diffstat (limited to 'hw/acpi/Makefile.objs')
-rw-r--r-- | hw/acpi/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/acpi/Makefile.objs b/hw/acpi/Makefile.objs index faee86c..66bd727 100644 --- a/hw/acpi/Makefile.objs +++ b/hw/acpi/Makefile.objs @@ -1,6 +1,6 @@ common-obj-$(CONFIG_ACPI_X86) += core.o piix4.o pcihp.o common-obj-$(CONFIG_ACPI_X86_ICH) += ich9.o tco.o -common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu_hotplug.o cpu_hotplug_acpi_table.o +common-obj-$(CONFIG_ACPI_CPU_HOTPLUG) += cpu_hotplug.o common-obj-$(CONFIG_ACPI_MEMORY_HOTPLUG) += memory_hotplug.o memory_hotplug_acpi_table.o obj-$(CONFIG_ACPI_NVDIMM) += nvdimm.o common-obj-$(CONFIG_ACPI) += acpi_interface.o |