mirror of
https://github.com/xemu-project/xemu.git
synced 2025-02-22 05:24:14 +00:00
qom: Rename qdev_get_type() to object_get_type()
Commit 2f262e06f0 lifted qdev_get_type() from qdev to object without renaming it accordingly. Do that now. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Message-Id: <20200707160613.848843-23-armbru@redhat.com>
This commit is contained in:
parent
fdb0df8798
commit
90c69fb9fd
@ -2379,7 +2379,7 @@ object_class_property_add_tm(ObjectClass *klass, const char *name,
|
||||
NULL, NULL, prop);
|
||||
}
|
||||
|
||||
static char *qdev_get_type(Object *obj, Error **errp)
|
||||
static char *object_get_type(Object *obj, Error **errp)
|
||||
{
|
||||
return g_strdup(object_get_typename(obj));
|
||||
}
|
||||
@ -2730,7 +2730,7 @@ void object_class_property_set_description(ObjectClass *klass,
|
||||
|
||||
static void object_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
object_class_property_add_str(klass, "type", qdev_get_type,
|
||||
object_class_property_add_str(klass, "type", object_get_type,
|
||||
NULL);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user