mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 09:43:56 -06:00
qdev: Remove qdev_prop_exists()
Can be replaced everywhere with object_property_find(). Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
ac7d1ba6d1
commit
8cb6789a31
6 changed files with 12 additions and 9 deletions
|
@ -672,7 +672,7 @@ void object_property_add(Object *obj, const char *name, const char *type,
|
|||
QTAILQ_INSERT_TAIL(&obj->properties, prop, node);
|
||||
}
|
||||
|
||||
static ObjectProperty *object_property_find(Object *obj, const char *name)
|
||||
ObjectProperty *object_property_find(Object *obj, const char *name)
|
||||
{
|
||||
ObjectProperty *prop;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue