1 #include "qemu/osdep.h" 2 #include "hw/acpi/cpu_hotplug.h" 3 #include "migration/vmstate.h" 4 5 6 /* Following stubs are all related to ACPI cpu hotplug */ 7 const VMStateDescription vmstate_cpu_hotplug; 8 9 void acpi_switch_to_modern_cphp(AcpiCpuHotplug *gpe_cpu, 10 CPUHotplugState *cpuhp_state, 11 uint16_t io_port) 12 { 13 return; 14 } 15 16 void legacy_acpi_cpu_hotplug_init(MemoryRegion *parent, Object *owner, 17 AcpiCpuHotplug *gpe_cpu, uint16_t base) 18 { 19 return; 20 } 21 22 void cpu_hotplug_hw_init(MemoryRegion *as, Object *owner, 23 CPUHotplugState *state, hwaddr base_addr) 24 { 25 return; 26 } 27 28 void acpi_cpu_ospm_status(CPUHotplugState *cpu_st, ACPIOSTInfoList ***list) 29 { 30 return; 31 } 32 33 void acpi_cpu_plug_cb(HotplugHandler *hotplug_dev, 34 CPUHotplugState *cpu_st, DeviceState *dev, Error **errp) 35 { 36 return; 37 } 38 39 void legacy_acpi_cpu_plug_cb(HotplugHandler *hotplug_dev, 40 AcpiCpuHotplug *g, DeviceState *dev, Error **errp) 41 { 42 return; 43 } 44 45 void acpi_cpu_unplug_cb(CPUHotplugState *cpu_st, 46 DeviceState *dev, Error **errp) 47 { 48 return; 49 } 50 51 void acpi_cpu_unplug_request_cb(HotplugHandler *hotplug_dev, 52 CPUHotplugState *cpu_st, 53 DeviceState *dev, Error **errp) 54 { 55 return; 56 } 57