summaryrefslogtreecommitdiffstats
path: root/hw/misc
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé2020-11-07 20:34:00 +0100
committerPeter Maydell2020-11-10 12:03:48 +0100
commit2108e5092a67aaaa710845159cab9df514e28716 (patch)
tree6190ad742c97cd1cae91a5fe89d3960c0a7c8f2b /hw/misc
parenthw/arm/armsse: Correct expansion MPC interrupt lines (diff)
downloadqemu-2108e5092a67aaaa710845159cab9df514e28716.tar.gz
qemu-2108e5092a67aaaa710845159cab9df514e28716.tar.xz
qemu-2108e5092a67aaaa710845159cab9df514e28716.zip
hw/misc/stm32f2xx_syscfg: Remove extraneous IRQ
The system configuration controller (SYSCFG) doesn't have any output IRQ (and the INTC input #71 belongs to the UART6). Remove the invalid code. Fixes: db635521a02 ("stm32f205: Add the stm32f205 SoC") Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20201107193403.436146-3-f4bug@amsat.org Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/misc')
-rw-r--r--hw/misc/stm32f2xx_syscfg.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/hw/misc/stm32f2xx_syscfg.c b/hw/misc/stm32f2xx_syscfg.c
index aa59b43549..04c22c2850 100644
--- a/hw/misc/stm32f2xx_syscfg.c
+++ b/hw/misc/stm32f2xx_syscfg.c
@@ -133,8 +133,6 @@ static void stm32f2xx_syscfg_init(Object *obj)
{
STM32F2XXSyscfgState *s = STM32F2XX_SYSCFG(obj);
- sysbus_init_irq(SYS_BUS_DEVICE(obj), &s->irq);
-
memory_region_init_io(&s->mmio, obj, &stm32f2xx_syscfg_ops, s,
TYPE_STM32F2XX_SYSCFG, 0x400);
sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);