From: Mark Cave-Ayland Date: Wed, 21 Jun 2023 08:53:50 +0000 (+0100) Subject: q800: don't access Nubus bus directly from the mac-nubus-bridge device X-Git-Tag: v8.1.0-rc0~48^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=464085e8f6776a0ca5a2677cf8b93b25c8a94da4;p=thirdparty%2Fqemu.git q800: don't access Nubus bus directly from the mac-nubus-bridge device Instead use the qdev_get_child_bus() function which is intended for this exact purpose. Signed-off-by: Mark Cave-Ayland Reviewed-by: Laurent Vivier Reviewed-by: Philippe Mathieu-Daudé Message-Id: <20230621085353.113233-22-mark.cave-ayland@ilande.co.uk> Signed-off-by: Laurent Vivier --- diff --git a/hw/m68k/q800.c b/hw/m68k/q800.c index b22651931a2..a32e6fbf8de 100644 --- a/hw/m68k/q800.c +++ b/hw/m68k/q800.c @@ -448,7 +448,7 @@ static void q800_machine_init(MachineState *machine) qdev_get_gpio_in_named(DEVICE(&m->via2), "nubus-irq", VIA2_NUBUS_IRQ_9)); - nubus = &NUBUS_BRIDGE(dev)->bus; + nubus = NUBUS_BUS(qdev_get_child_bus(dev, "nubus-bus.0")); /* framebuffer in nubus slot #9 */