qemu-patch-raspberry4/hw/arm
Markus Armbruster 8352a5b8cc sysbus: Tidy up sysbus_init_child_obj()'s @childsize arg, part 1
The callers of sysbus_init_child_obj() commonly pass either &child,
sizeof(child), or pchild, sizeof(*pchild).  Tidy up the few that use
sizeof(child_type) instead, mostly to keep future commits simpler.

Coccinelle script:

    @@
    expression parent, propname, type;
    type T;
    T child;
    @@
    -    sysbus_init_child_obj(parent, propname, &child, sizeof(T), type)
    +    sysbus_init_child_obj(parent, propname, &child, sizeof(child), type)

    @@
    expression parent, propname, type;
    type T;
    T *child;
    @@
    -    sysbus_init_child_obj(parent, propname, child, sizeof(T), type)
    +    sysbus_init_child_obj(parent, propname, child, sizeof(*child), type)

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-42-armbru@redhat.com>
2020-06-15 22:05:28 +02:00
..
allwinner-a10.c sysbus: Drop useless OBJECT() in sysbus_init_child_obj() calls 2020-06-15 22:05:28 +02:00
allwinner-h3.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
armsse.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
armv7m.c armv7m: Delete unused "ARM,bitband-memory" devices 2020-06-15 21:36:09 +02:00
aspeed.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
aspeed_ast2600.c sysbus: Drop useless OBJECT() in sysbus_init_child_obj() calls 2020-06-15 22:05:28 +02:00
aspeed_soc.c sysbus: Drop useless OBJECT() in sysbus_init_child_obj() calls 2020-06-15 22:05:28 +02:00
bcm2835_peripherals.c sysbus: Tidy up sysbus_init_child_obj()'s @childsize arg, part 1 2020-06-15 22:05:28 +02:00
bcm2836.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
boot.c Remove unnecessary cast when using the address_space API 2020-02-20 14:47:08 +01:00
collie.c hw/arm/collie: Put StrongARMState* into a CollieMachineState struct 2020-04-03 19:23:37 +01:00
cubieboard.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
digic.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
digic_boards.c arm/digic_boards: use memdev for RAM 2020-02-19 16:49:54 +00:00
exynos4_boards.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
exynos4210.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
fsl-imx6.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
fsl-imx6ul.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
fsl-imx7.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
fsl-imx25.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
fsl-imx31.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
gumstix.c hw/arm/gumstix: Simplify since the machines are little-endian only 2020-03-05 16:09:14 +00:00
highbank.c qdev: Convert uses of qdev_create() manually 2020-06-15 22:05:08 +02:00
imx25_pdk.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
integratorcp.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
Kconfig hw/arm/fsl-imx31: Wire up watchdog 2020-05-21 22:05:27 +01:00
kzm.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
mainstone.c hw/arm: Use memory_region_init_rom() with read-only regions 2020-03-17 15:18:46 +01:00
Makefile.objs hw/arm: add Xunlong Orange Pi PC machine 2020-03-12 16:27:33 +00:00
mcimx6ul-evk.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
mcimx7d-sabre.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
microbit.c microbit: Tidy up sysbus_init_child_obj() @child argument 2020-06-15 22:05:28 +02:00
mps2-tz.c sysbus: Tidy up sysbus_init_child_obj()'s @childsize arg, part 1 2020-06-15 22:05:28 +02:00
mps2.c arm/mps2: use memdev for RAM 2020-02-19 16:49:55 +00:00
msf2-soc.c qom: Drop parameter @errp of object_property_add() & friends 2020-05-15 07:07:58 +02:00
msf2-som.c ssi: Convert uses of ssi_create_slave_no_init() with Coccinelle 2020-06-15 22:05:28 +02:00
musca.c sysbus: Tidy up sysbus_init_child_obj()'s @childsize arg, part 1 2020-06-15 22:05:28 +02:00
musicpal.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
netduino2.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
netduinoplus2.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
nrf51_soc.c sysbus: Drop useless OBJECT() in sysbus_init_child_obj() calls 2020-06-15 22:05:28 +02:00
nseries.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
omap1.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
omap2.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
omap_sx1.c hw/arm: Use memory_region_init_rom() with read-only regions 2020-03-17 15:18:46 +01:00
orangepi.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
palm.c hw/arm: Use memory_region_init_rom() with read-only regions 2020-03-17 15:18:46 +01:00
pxa2xx.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
pxa2xx_gpio.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
pxa2xx_pic.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
raspi.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
realview.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
sabrelite.c ssi: Convert uses of ssi_create_slave_no_init() with Coccinelle 2020-06-15 22:05:28 +02:00
sbsa-ref.c qdev: Convert uses of qdev_create() manually 2020-06-15 22:05:08 +02:00
smmu-common.c hw/arm/smmu-common: Simplify smmu_find_smmu_pcibus() logic 2020-03-05 16:09:14 +00:00
smmu-internal.h hw/arm/smmu-common: VMSAv8-64 page table walk 2018-05-04 18:05:51 +01:00
smmuv3-internal.h hw/arm/smmuv3: Use correct bit positions in EVT_SET_ADDR2 macro 2019-12-20 14:03:00 +00:00
smmuv3.c hw: Remove unnecessary cast when calling dma_memory_read() 2020-02-20 14:47:08 +01:00
spitz.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
stellaris.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
stm32f205_soc.c hw/arm: Let devices own the MemoryRegion they create 2020-03-17 15:18:50 +01:00
stm32f405_soc.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
strongarm.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
strongarm.h hw/arm/collie: Create the RAM in the board 2019-10-22 17:44:01 +01:00
sysbus-fdt.c hw/arm/virt: vTPM support 2020-03-05 12:18:16 -05:00
tosa.c hw/arm: Use memory_region_init_rom() with read-only regions 2020-03-17 15:18:46 +01:00
trace-events trace-events: Fix attribution of trace points to source 2019-03-22 16:18:07 +00:00
versatilepb.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
vexpress.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
virt-acpi-build.c arm/acpi: TPM2 ACPI table support 2020-06-09 12:46:45 -04:00
virt.c qdev: Convert uses of qdev_create() manually 2020-06-15 22:05:08 +02:00
xilinx_zynq.c ssi: Convert uses of ssi_create_slave_no_init() with Coccinelle 2020-06-15 22:05:28 +02:00
xlnx-versal-virt.c qdev: Convert uses of qdev_create() with Coccinelle 2020-06-15 22:00:10 +02:00
xlnx-versal.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
xlnx-zcu102.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
xlnx-zynqmp.c qom: Less verbose object_initialize_child() 2020-06-15 22:05:28 +02:00
z2.c hw/arm/z2: Simplify since the machines are little-endian only 2020-03-05 16:09:15 +00:00