summaryrefslogtreecommitdiffstats
path: root/hw/isa
diff options
context:
space:
mode:
authorBernhard Beschow2022-06-03 20:50:36 +0200
committerPhilippe Mathieu-Daudé2022-06-11 11:44:50 +0200
commit14f94725c91fb9aebbc8d13241c52ba8b30b39d4 (patch)
treeade5a5e9615ad5fc062851d709a04928c8383e3a /hw/isa
parenthw/southbridge/piix: Aggregate all PIIX southbridge type names (diff)
downloadqemu-14f94725c91fb9aebbc8d13241c52ba8b30b39d4.tar.gz
qemu-14f94725c91fb9aebbc8d13241c52ba8b30b39d4.tar.xz
qemu-14f94725c91fb9aebbc8d13241c52ba8b30b39d4.zip
hw/isa/piix4: Use object_initialize_child() for embedded struct
Reported-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Message-Id: <20220603185045.143789-3-shentey@gmail.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/isa')
-rw-r--r--hw/isa/piix4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/isa/piix4.c b/hw/isa/piix4.c
index 9a6d981037..1d04fb6a55 100644
--- a/hw/isa/piix4.c
+++ b/hw/isa/piix4.c
@@ -224,7 +224,7 @@ static void piix4_init(Object *obj)
{
PIIX4State *s = PIIX4_PCI_DEVICE(obj);
- object_initialize(&s->rtc, sizeof(s->rtc), TYPE_MC146818_RTC);
+ object_initialize_child(obj, "rtc", &s->rtc, TYPE_MC146818_RTC);
}
static void piix4_class_init(ObjectClass *klass, void *data)