]> git.proxmox.com Git - qemu.git/blame - stubs/pci-drive-hot-add.c
Open 2.0 development tree
[qemu.git] / stubs / pci-drive-hot-add.c
CommitLineData
1559e0d4
PB
1#include <monitor/monitor.h>
2#include <sysemu/sysemu.h>
3#include <sysemu/blockdev.h>
4
5int 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}