mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
qdev: Convert bus-less devices to qdev_realize() with Coccinelle
All remaining conversions to qdev_realize() are for bus-less devices. Coccinelle script: // only correct for bus-less @dev! @@ expression errp; expression dev; @@ - qdev_init_nofail(dev); + qdev_realize(dev, NULL, &error_fatal); @ depends on !(file in "hw/core/qdev.c") && !(file in "hw/core/bus.c")@ expression errp; expression dev; symbol true; @@ - object_property_set_bool(OBJECT(dev), true, "realized", errp); + qdev_realize(DEVICE(dev), NULL, errp); @ depends on !(file in "hw/core/qdev.c") && !(file in "hw/core/bus.c")@ expression errp; expression dev; symbol true; @@ - object_property_set_bool(dev, true, "realized", errp); + qdev_realize(DEVICE(dev), NULL, errp); 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> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20200610053247.1583243-57-armbru@redhat.com>
This commit is contained in:
parent
464a22c757
commit
ce189ab230
80 changed files with 124 additions and 152 deletions
|
@ -331,8 +331,7 @@ static void sifive_u_machine_init(MachineState *machine)
|
|||
object_initialize_child(OBJECT(machine), "soc", &s->soc, TYPE_RISCV_U_SOC);
|
||||
object_property_set_uint(OBJECT(&s->soc), s->serial, "serial",
|
||||
&error_abort);
|
||||
object_property_set_bool(OBJECT(&s->soc), true, "realized",
|
||||
&error_abort);
|
||||
qdev_realize(DEVICE(&s->soc), NULL, &error_abort);
|
||||
|
||||
/* register RAM */
|
||||
memory_region_init_ram(main_mem, NULL, "riscv.sifive.u.ram",
|
||||
|
@ -530,10 +529,8 @@ static void sifive_u_soc_realize(DeviceState *dev, Error **errp)
|
|||
* CPU must exist and have been parented into the cluster before the
|
||||
* cluster is realized.
|
||||
*/
|
||||
object_property_set_bool(OBJECT(&s->e_cluster), true, "realized",
|
||||
&error_abort);
|
||||
object_property_set_bool(OBJECT(&s->u_cluster), true, "realized",
|
||||
&error_abort);
|
||||
qdev_realize(DEVICE(&s->e_cluster), NULL, &error_abort);
|
||||
qdev_realize(DEVICE(&s->u_cluster), NULL, &error_abort);
|
||||
|
||||
/* boot rom */
|
||||
memory_region_init_rom(mask_rom, OBJECT(dev), "riscv.sifive.u.mrom",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue