aboutsummaryrefslogtreecommitdiff
path: root/hw/device-hotplug.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/device-hotplug.c')
-rw-r--r--hw/device-hotplug.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/hw/device-hotplug.c b/hw/device-hotplug.c
index 69779caef5..c0cfd31d4d 100644
--- a/hw/device-hotplug.c
+++ b/hw/device-hotplug.c
@@ -62,21 +62,3 @@ void destroy_nic(dev_match_fn *match_fn, void *arg)
}
}
}
-
-void destroy_bdrvs(dev_match_fn *match_fn, void *arg)
-{
- DriveInfo *dinfo;
- struct BlockDriverState *bs;
-
- QTAILQ_FOREACH(dinfo, &drives, next) {
- bs = dinfo->bdrv;
- if (bs) {
- if (bs->private && match_fn(bs->private, arg)) {
- drive_uninit(bs);
- bdrv_delete(bs);
- }
- }
- }
-}
-
-