mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
qom: Less verbose object_initialize_child()
All users of object_initialize_child() pass the obvious child size
argument. Almost all pass &error_abort and no properties. Tiresome.
Rename object_initialize_child() to
object_initialize_child_with_props() to free the name. New
convenience wrapper object_initialize_child() automates the size
argument, and passes &error_abort and no properties.
Rename object_initialize_childv() to
object_initialize_child_with_propsv() for consistency.
Convert callers with this Coccinelle script:
@@
expression parent, propname, type;
expression child, size;
symbol error_abort;
@@
- object_initialize_child(parent, propname, OBJECT(child), size, type, &error_abort, NULL)
+ object_initialize_child(parent, propname, child, size, type, &error_abort, NULL)
@@
expression parent, propname, type;
expression child;
symbol error_abort;
@@
- object_initialize_child(parent, propname, child, sizeof(*child), type, &error_abort, NULL)
+ object_initialize_child(parent, propname, child, type)
@@
expression parent, propname, type;
expression child;
symbol error_abort;
@@
- object_initialize_child(parent, propname, &child, sizeof(child), type, &error_abort, NULL)
+ object_initialize_child(parent, propname, &child, type)
@@
expression parent, propname, type;
expression child, size, err;
expression list props;
@@
- object_initialize_child(parent, propname, child, size, type, err, props)
+ object_initialize_child_with_props(parent, propname, child, size, type, err, props)
Note that Coccinelle chokes on ARMSSE typedef vs. macro in
hw/arm/armsse.c. Worked around by temporarily renaming the macro for
the spatch run.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
[Rebased: machine opentitan is new (commit fe0fe4735e
)]
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-37-armbru@redhat.com>
This commit is contained in:
parent
19dc7e977c
commit
9fc7fc4d39
51 changed files with 161 additions and 221 deletions
|
@ -98,8 +98,8 @@ static void macio_init_child_obj(MacIOState *s, const char *childname,
|
|||
void *child, size_t childsize,
|
||||
const char *childtype)
|
||||
{
|
||||
object_initialize_child(OBJECT(s), childname, child, childsize, childtype,
|
||||
&error_abort, NULL);
|
||||
object_initialize_child_with_props(OBJECT(s), childname, child, childsize,
|
||||
childtype, &error_abort, NULL);
|
||||
qdev_set_parent_bus(DEVICE(child), BUS(&s->macio_bus));
|
||||
}
|
||||
|
||||
|
@ -351,8 +351,7 @@ static void macio_newworld_realize(PCIDevice *d, Error **errp)
|
|||
object_property_set_bool(OBJECT(&ns->gpio), true, "realized", &err);
|
||||
|
||||
/* PMU */
|
||||
object_initialize_child(OBJECT(s), "pmu", &s->pmu, sizeof(s->pmu),
|
||||
TYPE_VIA_PMU, &error_abort, NULL);
|
||||
object_initialize_child(OBJECT(s), "pmu", &s->pmu, TYPE_VIA_PMU);
|
||||
object_property_set_link(OBJECT(&s->pmu), OBJECT(sysbus_dev), "gpio",
|
||||
&error_abort);
|
||||
qdev_prop_set_bit(DEVICE(&s->pmu), "has-adb", ns->has_adb);
|
||||
|
@ -370,8 +369,7 @@ static void macio_newworld_realize(PCIDevice *d, Error **errp)
|
|||
object_unparent(OBJECT(&ns->gpio));
|
||||
|
||||
/* CUDA */
|
||||
object_initialize_child(OBJECT(s), "cuda", &s->cuda, sizeof(s->cuda),
|
||||
TYPE_CUDA, &error_abort, NULL);
|
||||
object_initialize_child(OBJECT(s), "cuda", &s->cuda, TYPE_CUDA);
|
||||
qdev_prop_set_uint64(DEVICE(&s->cuda), "timebase-frequency",
|
||||
s->frequency);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue