mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
qdev: Make qdev_find_global_prop() get Object* argument
Make the code more generic and not specific to TYPE_DEVICE. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20201211220529.2290218-11-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
This commit is contained in:
parent
828ade86ee
commit
395012756c
3 changed files with 4 additions and 4 deletions
|
|
@ -818,7 +818,7 @@ void qdev_prop_register_global(GlobalProperty *prop)
|
|||
g_ptr_array_add(global_props(), prop);
|
||||
}
|
||||
|
||||
const GlobalProperty *qdev_find_global_prop(DeviceState *dev,
|
||||
const GlobalProperty *qdev_find_global_prop(Object *obj,
|
||||
const char *name)
|
||||
{
|
||||
GPtrArray *props = global_props();
|
||||
|
|
@ -827,7 +827,7 @@ const GlobalProperty *qdev_find_global_prop(DeviceState *dev,
|
|||
|
||||
for (i = 0; i < props->len; i++) {
|
||||
p = g_ptr_array_index(props, i);
|
||||
if (object_dynamic_cast(OBJECT(dev), p->driver)
|
||||
if (object_dynamic_cast(obj, p->driver)
|
||||
&& !strcmp(p->property, name)) {
|
||||
return p;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue