summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorIgor Mammedov2016-05-17 16:42:57 +0200
committerMichael S. Tsirkin2016-06-07 14:36:54 +0200
commit7c2991fa115eae8d54e544d6231ee81844d6c8e3 (patch)
treeeb9f5e334ce4f4ab428650804aacdc56351a4fd5 /include
parentpc: acpi: remove AML for empty/not used GPE handlers (diff)
downloadqemu-7c2991fa115eae8d54e544d6231ee81844d6c8e3.tar.gz
qemu-7c2991fa115eae8d54e544d6231ee81844d6c8e3.tar.xz
qemu-7c2991fa115eae8d54e544d6231ee81844d6c8e3.zip
pc: acpi: consolidate CPU hotplug AML
move the former SSDT part of CPU hoplug close to DSDT part. AML is only moved but there isn't any functional change. 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>
Diffstat (limited to 'include')
-rw-r--r--include/hw/acpi/cpu_hotplug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/hw/acpi/cpu_hotplug.h b/include/hw/acpi/cpu_hotplug.h
index f22640e389..9b1d0cf785 100644
--- a/include/hw/acpi/cpu_hotplug.h
+++ b/include/hw/acpi/cpu_hotplug.h
@@ -34,5 +34,6 @@ void acpi_cpu_hotplug_init(MemoryRegion *parent, Object *owner,
#define CPU_STATUS_MAP "PRS"
#define CPU_SCAN_METHOD "PRSC"
-void build_cpu_hotplug_aml(Aml *ctx);
+void build_cpu_hotplug_aml(Aml *ctx, MachineState *machine,
+ uint16_t io_base, uint16_t io_len);
#endif