mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-29 06:20:26 +00:00
pc: acpi: consolidate \GPE._E02 with the rest of CPU hotplug AML
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>
This commit is contained in:
parent
7c2991fa11
commit
8edf77e497
@ -235,4 +235,8 @@ void build_cpu_hotplug_aml(Aml *ctx, MachineState *machine,
|
||||
g_free(apic_ids);
|
||||
|
||||
aml_append(ctx, sb_scope);
|
||||
|
||||
method = aml_method("\\_GPE._E02", 0, AML_NOTSERIALIZED);
|
||||
aml_append(method, aml_call0("\\_SB." CPU_SCAN_METHOD));
|
||||
aml_append(ctx, method);
|
||||
}
|
||||
|
@ -1952,10 +1952,6 @@ build_dsdt(GArray *table_data, GArray *linker,
|
||||
aml_append(scope, method);
|
||||
}
|
||||
|
||||
method = aml_method("_E02", 0, AML_NOTSERIALIZED);
|
||||
aml_append(method, aml_call0("\\_SB." CPU_SCAN_METHOD));
|
||||
aml_append(scope, method);
|
||||
|
||||
method = aml_method("_E03", 0, AML_NOTSERIALIZED);
|
||||
aml_append(method, aml_call0(MEMORY_HOTPLUG_HANDLER_PATH));
|
||||
aml_append(scope, method);
|
||||
|
Loading…
Reference in New Issue
Block a user