summaryrefslogtreecommitdiff
path: root/monitor.c
diff options
context:
space:
mode:
authorZhu Guihua <zhugh.fnst@cn.fujitsu.com>2014-10-21 19:46:06 +0800
committerLuiz Capitulino <lcapitulino@redhat.com>2014-10-23 09:04:05 -0400
commite799157c766d96506214059d8b75712a3e615431 (patch)
tree12e69462ce386b5b2076adcf15a9229516502b92 /monitor.c
parent6a1fa9f5a62937a8552dbc380c5418c696bf7762 (diff)
downloadqemu-e799157c766d96506214059d8b75712a3e615431.tar.gz
monitor: delete device_del_bus_completion
device_del_bus_completion() that gathers devices from buses is unused; delete it. Signed-off-by: Zhu Guihua <zhugh.fnst@cn.fujitsu.com> Reviewed-by: Marcel Apfelbaum <marcel.a@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'monitor.c')
-rw-r--r--monitor.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/monitor.c b/monitor.c
index e3799f925e..07fb36e717 100644
--- a/monitor.c
+++ b/monitor.c
@@ -4322,25 +4322,6 @@ void object_add_completion(ReadLineState *rs, int nb_args, const char *str)
g_slist_free(list);
}
-static void device_del_bus_completion(ReadLineState *rs, BusState *bus,
- const char *str, size_t len)
-{
- BusChild *kid;
-
- QTAILQ_FOREACH(kid, &bus->children, sibling) {
- DeviceState *dev = kid->child;
- BusState *dev_child;
-
- if (dev->id && !strncmp(str, dev->id, len)) {
- readline_add_completion(rs, dev->id);
- }
-
- QLIST_FOREACH(dev_child, &dev->child_bus, sibling) {
- device_del_bus_completion(rs, dev_child, str, len);
- }
- }
-}
-
static void peripheral_device_del_completion(ReadLineState *rs,
const char *str, size_t len)
{
@@ -4438,7 +4419,6 @@ void device_del_completion(ReadLineState *rs, int nb_args, const char *str)
len = strlen(str);
readline_set_completion_index(rs, len);
- device_del_bus_completion(rs, sysbus_get_default(), str, len);
peripheral_device_del_completion(rs, str, len);
}