| 1 | #include "qemu/osdep.h" |
| 2 | #include "hw/acpi/memory_hotplug.h" |
| 3 | #include "migration/vmstate.h" |
| 4 | |
| 5 | const VMStateDescription vmstate_memory_hotplug; |
| 6 | |
| 7 | void acpi_memory_hotplug_init(MemoryRegion *as, Object *owner, |
| 8 | MemHotplugState *state, hwaddr io_base) |
| 9 | { |
| 10 | } |
| 11 | |
| 12 | void acpi_memory_ospm_status(MemHotplugState *mem_st, ACPIOSTInfoList ***list) |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | void acpi_memory_plug_cb(HotplugHandler *hotplug_dev, MemHotplugState *mem_st, |
| 17 | DeviceState *dev, Error **errp) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | void acpi_memory_unplug_cb(MemHotplugState *mem_st, |
| 22 | DeviceState *dev, Error **errp) |
| 23 | { |
| 24 | } |
| 25 | |
| 26 | void acpi_memory_unplug_request_cb(HotplugHandler *hotplug_dev, |
| 27 | MemHotplugState *mem_st, |
| 28 | DeviceState *dev, Error **errp) |
| 29 | { |
| 30 | } |