[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 03/23] hw/ppc/e500: Prefer QOM cast
From: |
Bernhard Beschow |
Subject: |
[PATCH 03/23] hw/ppc/e500: Prefer QOM cast |
Date: |
Mon, 23 Sep 2024 11:29:56 +0200 |
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
---
hw/ppc/e500.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c
index f68779a1ea..32996c188e 100644
--- a/hw/ppc/e500.c
+++ b/hw/ppc/e500.c
@@ -1008,7 +1008,7 @@ void ppce500_init(MachineState *machine)
sysbus_connect_irq(s, 0, qdev_get_gpio_in(mpicdev, MPC8544_I2C_IRQ));
memory_region_add_subregion(ccsr_addr_space, MPC8544_I2C_REGS_OFFSET,
sysbus_mmio_get_region(s, 0));
- i2c = (I2CBus *)qdev_get_child_bus(dev, "i2c");
+ i2c = I2C_BUS(qdev_get_child_bus(dev, "i2c"));
i2c_slave_create_simple(i2c, "ds1338", RTC_REGS_OFFSET);
/* eSDHC */
@@ -1057,7 +1057,7 @@ void ppce500_init(MachineState *machine)
memory_region_add_subregion(ccsr_addr_space, MPC8544_PCI_REGS_OFFSET,
sysbus_mmio_get_region(s, 0));
- pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci.0");
+ pci_bus = PCI_BUS(qdev_get_child_bus(dev, "pci.0"));
if (!pci_bus)
printf("couldn't create PCI controller!\n");
--
2.46.1
- Re: [PATCH 01/23] hw/ppc/e500: Do not leak struct boot_info, (continued)
- [PATCH 02/23] hw/ppc/e500: Reduce scope of env pointer, Bernhard Beschow, 2024/09/23
- [PATCH 03/23] hw/ppc/e500: Prefer QOM cast,
Bernhard Beschow <=
- [PATCH 04/23] hw/ppc/e500: Remove unused "irqs" parameter, Bernhard Beschow, 2024/09/23
- [PATCH 05/23] hw/ppc/e500: Add missing device tree properties to i2c controller node, Bernhard Beschow, 2024/09/23
- [PATCH 06/23] hw/ppc/e500: Use SysBusDevice API to access TYPE_CCSR's internal resources, Bernhard Beschow, 2024/09/23
- [PATCH 07/23] hw/ppc/e500: Extract ppce500_ccsr.c, Bernhard Beschow, 2024/09/23