summary refs log tree commit diff stats
path: root/hw/avr/atmega.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-12-05 23:41:09 +0100
committerLaurent Vivier <laurent@vivier.eu>2021-12-17 10:43:24 +0100
commit74fb2f4f4c47c966ab54687392e6561b4de4bb8a (patch)
tree0e8d33592fe624471c4ab7fa7eddcdfa320c7eb8 /hw/avr/atmega.c
parent4455922f7bb8fef2f5aa0a4d3901041bcc4b659d (diff)
downloadfocaccia-qemu-74fb2f4f4c47c966ab54687392e6561b4de4bb8a.tar.gz
focaccia-qemu-74fb2f4f4c47c966ab54687392e6561b4de4bb8a.zip
hw/avr: Realize AVRCPU qdev object using qdev_realize()
TYPE_AVR_CPU inherits TYPE_CPU, which itself inherits TYPE_DEVICE.
TYPE_DEVICE instances are realized using qdev_realize(), we don't
need to access QOM internal values.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Michael Rolnik <mrolnik@gmail.com>
Message-Id: <20211205224109.322152-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/avr/atmega.c')
-rw-r--r--hw/avr/atmega.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/avr/atmega.c b/hw/avr/atmega.c
index 0608e2d475..a34803e642 100644
--- a/hw/avr/atmega.c
+++ b/hw/avr/atmega.c
@@ -233,7 +233,7 @@ static void atmega_realize(DeviceState *dev, Error **errp)
 
     /* CPU */
     object_initialize_child(OBJECT(dev), "cpu", &s->cpu, mc->cpu_type);
-    object_property_set_bool(OBJECT(&s->cpu), "realized", true, &error_abort);
+    qdev_realize(DEVICE(&s->cpu), NULL, &error_abort);
     cpudev = DEVICE(&s->cpu);
 
     /* SRAM */