acpi-mem-hotplug-stub.c 876 B

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