summaryrefslogtreecommitdiffstats
path: root/hw/arm/omap2.c
diff options
context:
space:
mode:
authorMarc-André Lureau2019-10-18 14:42:57 +0200
committerMarc-André Lureau2020-01-07 14:24:29 +0100
commitbab592a259a6603922a4f54caedb6e52da692e35 (patch)
treeb574b30d13be17691b9d745c1e1f3a9bd6fbe4c7 /hw/arm/omap2.c
parentsmbus-eeprom: remove PROP_PTR (diff)
downloadqemu-bab592a259a6603922a4f54caedb6e52da692e35.tar.gz
qemu-bab592a259a6603922a4f54caedb6e52da692e35.tar.xz
qemu-bab592a259a6603922a4f54caedb6e52da692e35.zip
omap-intc: remove PROP_PTR
Since clocks are not QOM objects, replace PROP_PTR of clocks with setters methods. (in theory there should probably be different methods for omap1 & omap2 intc, but this is left as a future improvement) Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Diffstat (limited to 'hw/arm/omap2.c')
-rw-r--r--hw/arm/omap2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/arm/omap2.c b/hw/arm/omap2.c
index 457f152bac..1d7cc435ef 100644
--- a/hw/arm/omap2.c
+++ b/hw/arm/omap2.c
@@ -2308,8 +2308,8 @@ struct omap_mpu_state_s *omap2420_mpu_init(MemoryRegion *sdram,
/* Actually mapped at any 2K boundary in the ARM11 private-peripheral if */
s->ih[0] = qdev_create(NULL, "omap2-intc");
qdev_prop_set_uint8(s->ih[0], "revision", 0x21);
- qdev_prop_set_ptr(s->ih[0], "fclk", omap_findclk(s, "mpu_intc_fclk"));
- qdev_prop_set_ptr(s->ih[0], "iclk", omap_findclk(s, "mpu_intc_iclk"));
+ omap_intc_set_fclk(OMAP_INTC(s->ih[0]), omap_findclk(s, "mpu_intc_fclk"));
+ omap_intc_set_iclk(OMAP_INTC(s->ih[0]), omap_findclk(s, "mpu_intc_iclk"));
qdev_init_nofail(s->ih[0]);
busdev = SYS_BUS_DEVICE(s->ih[0]);
sysbus_connect_irq(busdev, 0,