typo: apci->acpi
authorDr. David Alan Gilbert <dgilbert@redhat.com>
Fri, 25 Jan 2019 09:40:46 +0000 (09:40 +0000)
committerLaurent Vivier <laurent@vivier.eu>
Wed, 30 Jan 2019 09:16:58 +0000 (10:16 +0100)
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>
hw/acpi/cpu.c
hw/i386/acpi-build.c
include/hw/acpi/cpu.h

index f10b190019fea9641f58a475938432170a7e98ed..a0a43fe6b5c0801f76a93587c3d8ee5e051fc357 100644 (file)
@@ -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);
index 2e21a31f828ed994b675379171a69486f41cbae3..d60603abd7e5daa04e2bf4efdf5735226d0aac0d 100644 (file)
@@ -1847,7 +1847,7 @@ build_dsdt(GArray *table_data, BIOSLinker *linker,
         build_legacy_cpu_hotplug_aml(dsdt, machine, pm->cpu_hp_io_base);
     } else {
         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,
                        "\\_SB.PCI0", "\\_GPE._E02");
index 89ce172941b81ef35151522f9c5410520124aaab..62f0278ba2586fbe2fdaf553691e4a20c5cccf5d 100644 (file)
@@ -48,7 +48,7 @@ void cpu_hotplug_hw_init(MemoryRegion *as, Object *owner,
                          CPUHotplugState *state, hwaddr base_addr);
 
 typedef struct CPUHotplugFeatures {
-    bool apci_1_compatible;
+    bool acpi_1_compatible;
     bool has_legacy_cphp;
 } CPUHotplugFeatures;