]>
Commit | Line | Data |
---|---|---|
1559e0d4 PB |
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 | } |