mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
qom: Put name parameter before value / visitor parameter
The object_property_set_FOO() setters take property name and value in
an unusual order:
void object_property_set_FOO(Object *obj, FOO_TYPE value,
const char *name, Error **errp)
Having to pass value before name feels grating. Swap them.
Same for object_property_set(), object_property_get(), and
object_property_parse().
Convert callers with this Coccinelle script:
@@
identifier fun = {
object_property_get, object_property_parse, object_property_set_str,
object_property_set_link, object_property_set_bool,
object_property_set_int, object_property_set_uint, object_property_set,
object_property_set_qobject
};
expression obj, v, name, errp;
@@
- fun(obj, v, name, errp)
+ fun(obj, name, v, errp)
Chokes on hw/arm/musicpal.c's lcd_refresh() with the unhelpful error
message "no position information". Convert that one manually.
Fails to convert hw/arm/armsse.c, because Coccinelle gets confused by
ARMSSE being used both as typedef and function-like macro there.
Convert manually.
Fails to convert hw/rx/rx-gdbsim.c, because Coccinelle gets confused
by RXCPU being used both as typedef and function-like macro there.
Convert manually. The other files using RXCPU that way don't need
conversion.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20200707160613.848843-27-armbru@redhat.com>
[Straightforwad conflict with commit 2336172d9b
"audio: set default
value for pcspk.iobase property" resolved]
This commit is contained in:
parent
1c94a35164
commit
5325cc34a2
138 changed files with 712 additions and 741 deletions
|
@ -120,14 +120,14 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
|
|||
|
||||
/* On uniprocessor, the CBAR is set to 0 */
|
||||
if (smp_cpus > 1) {
|
||||
object_property_set_int(OBJECT(&s->cpu[i]), FSL_IMX6_A9MPCORE_ADDR,
|
||||
"reset-cbar", &error_abort);
|
||||
object_property_set_int(OBJECT(&s->cpu[i]), "reset-cbar",
|
||||
FSL_IMX6_A9MPCORE_ADDR, &error_abort);
|
||||
}
|
||||
|
||||
/* All CPU but CPU 0 start in power off mode */
|
||||
if (i) {
|
||||
object_property_set_bool(OBJECT(&s->cpu[i]), true,
|
||||
"start-powered-off", &error_abort);
|
||||
object_property_set_bool(OBJECT(&s->cpu[i]), "start-powered-off",
|
||||
true, &error_abort);
|
||||
}
|
||||
|
||||
if (!qdev_realize(DEVICE(&s->cpu[i]), NULL, &err)) {
|
||||
|
@ -136,12 +136,11 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
|
|||
}
|
||||
}
|
||||
|
||||
object_property_set_int(OBJECT(&s->a9mpcore), smp_cpus, "num-cpu",
|
||||
object_property_set_int(OBJECT(&s->a9mpcore), "num-cpu", smp_cpus,
|
||||
&error_abort);
|
||||
|
||||
object_property_set_int(OBJECT(&s->a9mpcore),
|
||||
FSL_IMX6_MAX_IRQ + GIC_INTERNAL, "num-irq",
|
||||
&error_abort);
|
||||
object_property_set_int(OBJECT(&s->a9mpcore), "num-irq",
|
||||
FSL_IMX6_MAX_IRQ + GIC_INTERNAL, &error_abort);
|
||||
|
||||
if (!sysbus_realize(SYS_BUS_DEVICE(&s->a9mpcore), &err)) {
|
||||
error_propagate(errp, err);
|
||||
|
@ -295,10 +294,10 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
|
|||
},
|
||||
};
|
||||
|
||||
object_property_set_bool(OBJECT(&s->gpio[i]), true, "has-edge-sel",
|
||||
&error_abort);
|
||||
object_property_set_bool(OBJECT(&s->gpio[i]), true, "has-upper-pin-irq",
|
||||
object_property_set_bool(OBJECT(&s->gpio[i]), "has-edge-sel", true,
|
||||
&error_abort);
|
||||
object_property_set_bool(OBJECT(&s->gpio[i]), "has-upper-pin-irq",
|
||||
true, &error_abort);
|
||||
if (!sysbus_realize(SYS_BUS_DEVICE(&s->gpio[i]), &err)) {
|
||||
error_propagate(errp, err);
|
||||
return;
|
||||
|
@ -326,14 +325,12 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
|
|||
};
|
||||
|
||||
/* UHS-I SDIO3.0 SDR104 1.8V ADMA */
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), 3, "sd-spec-version",
|
||||
&error_abort);
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), IMX6_ESDHC_CAPABILITIES,
|
||||
"capareg",
|
||||
&error_abort);
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), SDHCI_VENDOR_IMX,
|
||||
"vendor",
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), "sd-spec-version", 3,
|
||||
&error_abort);
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), "capareg",
|
||||
IMX6_ESDHC_CAPABILITIES, &error_abort);
|
||||
object_property_set_uint(OBJECT(&s->esdhc[i]), "vendor",
|
||||
SDHCI_VENDOR_IMX, &error_abort);
|
||||
if (!sysbus_realize(SYS_BUS_DEVICE(&s->esdhc[i]), &err)) {
|
||||
error_propagate(errp, err);
|
||||
return;
|
||||
|
@ -417,8 +414,8 @@ static void fsl_imx6_realize(DeviceState *dev, Error **errp)
|
|||
FSL_IMX6_WDOG2_IRQ,
|
||||
};
|
||||
|
||||
object_property_set_bool(OBJECT(&s->wdt[i]), true, "pretimeout-support",
|
||||
&error_abort);
|
||||
object_property_set_bool(OBJECT(&s->wdt[i]), "pretimeout-support",
|
||||
true, &error_abort);
|
||||
sysbus_realize(SYS_BUS_DEVICE(&s->wdt[i]), &error_abort);
|
||||
|
||||
sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt[i]), 0, FSL_IMX6_WDOGn_ADDR[i]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue