summaryrefslogtreecommitdiff
path: root/qmp.c
diff options
context:
space:
mode:
authorLaurent Vivier <lvivier@redhat.com>2017-04-14 10:37:17 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-04-21 07:18:34 +0200
commit08f00df4f4b8b4e38ad620477cc90cf5f73832d9 (patch)
tree881edf1c20894797324f794c50f3113c08852cb4 /qmp.c
parentd28fca153bb27ff965b9eb26d73327fa4d2402c8 (diff)
downloadqemu-08f00df4f4b8b4e38ad620477cc90cf5f73832d9.tar.gz
qdev: remove cannot_destroy_with_object_finalize_yet
As all users have been removed, we can remove cannot_destroy_with_object_finalize_yet field from the DeviceClass structure. Signed-off-by: Laurent Vivier <lvivier@redhat.com> Message-Id: <20170414083717.13641-5-lvivier@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Acked-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qmp.c')
-rw-r--r--qmp.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/qmp.c b/qmp.c
index a744e44ac6..ab74cd729d 100644
--- a/qmp.c
+++ b/qmp.c
@@ -548,11 +548,6 @@ DevicePropertyInfoList *qmp_device_list_properties(const char *typename,
return NULL;
}
- if (DEVICE_CLASS(klass)->cannot_destroy_with_object_finalize_yet) {
- error_setg(errp, "Can't list properties of device '%s'", typename);
- return NULL;
- }
-
obj = object_new(typename);
object_property_iter_init(&iter, obj);