mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
qdev: Convert uses of qdev_create() manually
Same transformation as in the previous commit. Manual, because convincing Coccinelle to transform these cases is somewhere between not worthwhile and infeasible (at least for me). Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20200610053247.1583243-11-armbru@redhat.com>
This commit is contained in:
parent
3e80f6902c
commit
df70796916
16 changed files with 48 additions and 49 deletions
|
@ -213,15 +213,15 @@ static void leon3_generic_hw_init(MachineState *machine)
|
|||
reset_info->sp = LEON3_RAM_OFFSET + ram_size;
|
||||
qemu_register_reset(main_cpu_reset, reset_info);
|
||||
|
||||
ahb_pnp = GRLIB_AHB_PNP(qdev_create(NULL, TYPE_GRLIB_AHB_PNP));
|
||||
object_property_set_bool(OBJECT(ahb_pnp), true, "realized", &error_fatal);
|
||||
ahb_pnp = GRLIB_AHB_PNP(qdev_new(TYPE_GRLIB_AHB_PNP));
|
||||
qdev_realize_and_unref(DEVICE(ahb_pnp), NULL, &error_fatal);
|
||||
sysbus_mmio_map(SYS_BUS_DEVICE(ahb_pnp), 0, LEON3_AHB_PNP_OFFSET);
|
||||
grlib_ahb_pnp_add_entry(ahb_pnp, 0, 0, GRLIB_VENDOR_GAISLER,
|
||||
GRLIB_LEON3_DEV, GRLIB_AHB_MASTER,
|
||||
GRLIB_CPU_AREA);
|
||||
|
||||
apb_pnp = GRLIB_APB_PNP(qdev_create(NULL, TYPE_GRLIB_APB_PNP));
|
||||
object_property_set_bool(OBJECT(apb_pnp), true, "realized", &error_fatal);
|
||||
apb_pnp = GRLIB_APB_PNP(qdev_new(TYPE_GRLIB_APB_PNP));
|
||||
qdev_realize_and_unref(DEVICE(apb_pnp), NULL, &error_fatal);
|
||||
sysbus_mmio_map(SYS_BUS_DEVICE(apb_pnp), 0, LEON3_APB_PNP_OFFSET);
|
||||
grlib_ahb_pnp_add_entry(ahb_pnp, LEON3_APB_PNP_OFFSET, 0xFFF,
|
||||
GRLIB_VENDOR_GAISLER, GRLIB_APBMST_DEV,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue