diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-10-26 22:55:46 +0200 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2020-01-07 17:24:29 +0400 |
commit | f0d753b1c1e6c334cd089be97a0eb9f1bc415559 (patch) | |
tree | f3b22607169c34e7b9d6ea9f365676e9e03781c0 /qom | |
parent | 70f3d674bc2daac865fb75878030c063697fd16a (diff) | |
download | qemu-f0d753b1c1e6c334cd089be97a0eb9f1bc415559.zip |
qdev/qom: remove some TODO limitations now that PROP_PTR is gone
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qom')
-rw-r--r-- | qom/qom-qmp-cmds.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/qom/qom-qmp-cmds.c b/qom/qom-qmp-cmds.c index 236e8e41dd..f4494f98ac 100644 --- a/qom/qom-qmp-cmds.c +++ b/qom/qom-qmp-cmds.c @@ -142,16 +142,6 @@ static ObjectPropertyInfo *make_device_property_info(ObjectClass *klass, continue; } - /* - * TODO Properties without a parser are just for dirty hacks. - * qdev_prop_ptr is the only such PropertyInfo. It's marked - * for removal. This conditional should be removed along with - * it. - */ - if (!prop->info->set && !prop->info->create) { - return NULL; /* no way to set it, don't show */ - } - info = g_malloc0(sizeof(*info)); info->name = g_strdup(prop->name); info->type = default_type ? g_strdup(default_type) |