mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-11 03:24:58 -06:00
typo: apci->acpi
apci_1_compatible should be acpi_1_compatible. Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190125094047.22276-1-dgilbert@redhat.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
This commit is contained in:
parent
aae049073c
commit
89cb0c0403
3 changed files with 3 additions and 3 deletions
|
@ -508,7 +508,7 @@ void build_cpus_aml(Aml *table, MachineState *machine, CPUHotplugFeatures opts,
|
||||||
GArray *madt_buf = g_array_new(0, 1, 1);
|
GArray *madt_buf = g_array_new(0, 1, 1);
|
||||||
int arch_id = arch_ids->cpus[i].arch_id;
|
int arch_id = arch_ids->cpus[i].arch_id;
|
||||||
|
|
||||||
if (opts.apci_1_compatible && arch_id < 255) {
|
if (opts.acpi_1_compatible && arch_id < 255) {
|
||||||
dev = aml_processor(i, 0, 0, CPU_NAME_FMT, i);
|
dev = aml_processor(i, 0, 0, CPU_NAME_FMT, i);
|
||||||
} else {
|
} else {
|
||||||
dev = aml_device(CPU_NAME_FMT, i);
|
dev = aml_device(CPU_NAME_FMT, i);
|
||||||
|
|
|
@ -1847,7 +1847,7 @@ build_dsdt(GArray *table_data, BIOSLinker *linker,
|
||||||
build_legacy_cpu_hotplug_aml(dsdt, machine, pm->cpu_hp_io_base);
|
build_legacy_cpu_hotplug_aml(dsdt, machine, pm->cpu_hp_io_base);
|
||||||
} else {
|
} else {
|
||||||
CPUHotplugFeatures opts = {
|
CPUHotplugFeatures opts = {
|
||||||
.apci_1_compatible = true, .has_legacy_cphp = true
|
.acpi_1_compatible = true, .has_legacy_cphp = true
|
||||||
};
|
};
|
||||||
build_cpus_aml(dsdt, machine, opts, pm->cpu_hp_io_base,
|
build_cpus_aml(dsdt, machine, opts, pm->cpu_hp_io_base,
|
||||||
"\\_SB.PCI0", "\\_GPE._E02");
|
"\\_SB.PCI0", "\\_GPE._E02");
|
||||||
|
|
|
@ -48,7 +48,7 @@ void cpu_hotplug_hw_init(MemoryRegion *as, Object *owner,
|
||||||
CPUHotplugState *state, hwaddr base_addr);
|
CPUHotplugState *state, hwaddr base_addr);
|
||||||
|
|
||||||
typedef struct CPUHotplugFeatures {
|
typedef struct CPUHotplugFeatures {
|
||||||
bool apci_1_compatible;
|
bool acpi_1_compatible;
|
||||||
bool has_legacy_cphp;
|
bool has_legacy_cphp;
|
||||||
} CPUHotplugFeatures;
|
} CPUHotplugFeatures;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue