diff options
author | Cédric Le Goater <clg@kaod.org> | 2023-03-02 13:57:50 +0100 |
---|---|---|
committer | Cédric Le Goater <clg@kaod.org> | 2023-03-02 13:57:50 +0100 |
commit | b22a2d409b1acfdf0d63d1bb3595194ceb3d94da (patch) | |
tree | f94ef33e54fe093124d69df4c1032342220c4554 /hw/arm | |
parent | 8b744a6a473015a24d528f480b99faf95da50775 (diff) | |
download | qemu-b22a2d409b1acfdf0d63d1bb3595194ceb3d94da.zip qemu-b22a2d409b1acfdf0d63d1bb3595194ceb3d94da.tar.gz qemu-b22a2d409b1acfdf0d63d1bb3595194ceb3d94da.tar.bz2 |
aspeed/smc: Replace SysBus IRQs with GPIO lines
It's cleaner and removes the curious '+ 1' required to skip the DMA
IRQ line of the controller.
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'hw/arm')
-rw-r--r-- | hw/arm/aspeed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/aspeed.c b/hw/arm/aspeed.c index e261738..86601cb 100644 --- a/hw/arm/aspeed.c +++ b/hw/arm/aspeed.c @@ -306,7 +306,7 @@ void aspeed_board_init_flashes(AspeedSMCState *s, const char *flashtype, qdev_realize_and_unref(dev, BUS(s->spi), &error_fatal); cs_line = qdev_get_gpio_in_named(dev, SSI_GPIO_CS, 0); - sysbus_connect_irq(SYS_BUS_DEVICE(s), i + 1, cs_line); + qdev_connect_gpio_out_named(DEVICE(s), "cs", i, cs_line); } } |