]> git.proxmox.com Git - qemu.git/blob - stubs/pci-drive-hot-add.c
rng-egd: remove redundant free
[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 }