]> Git Repo - qemu.git/blob - stubs/pci-drive-hot-add.c
qemu-io: Move command_loop() and friends
[qemu.git] / stubs / pci-drive-hot-add.c
1 #include <monitor/monitor.h>
2 #include <sysemu/sysemu.h>
3 #include <sysemu/blockdev.h>
4
5 int pci_drive_hot_add(Monitor *mon, const QDict *qdict, DriveInfo *dinfo)
6 {
7     /* On non-x86 we don't do PCI hotplug */
8     monitor_printf(mon, "Can't hot-add drive to type %d\n", dinfo->type);
9     return -1;
10 }
This page took 0.024072 seconds and 4 git commands to generate.