diff options
author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2019-01-25 09:40:46 +0000 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2019-01-30 10:16:58 +0100 |
commit | 89cb0c0403f27cdb040fc8bf84749333f3248e38 (patch) | |
tree | a65d478af6a7a53979fad6a6cb99f3b48a3221f7 /hw/acpi/cpu.c | |
parent | aae049073c5b5797ca3d11cc562f0bcd0a20cfb5 (diff) |
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>
Diffstat (limited to 'hw/acpi/cpu.c')
-rw-r--r-- | hw/acpi/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/acpi/cpu.c b/hw/acpi/cpu.c index f10b190019..a0a43fe6b5 100644 --- a/hw/acpi/cpu.c +++ b/hw/acpi/cpu.c @@ -508,7 +508,7 @@ void build_cpus_aml(Aml *table, MachineState *machine, CPUHotplugFeatures opts, GArray *madt_buf = g_array_new(0, 1, 1); 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); } else { dev = aml_device(CPU_NAME_FMT, i); |