diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2022-04-04 16:46:49 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2022-04-21 11:37:04 +0100 |
| commit | 38c2b905d3beb27a056f7f53bcf7d9bce487e89d (patch) | |
| tree | 766166b384f16a007aa9536f8b23d67b341e0179 /include/hw/arm/exynos4210.h | |
| parent | 78cb12a92c5466b792224e1f4c3e061d233d383b (diff) | |
| download | focaccia-qemu-38c2b905d3beb27a056f7f53bcf7d9bce487e89d.tar.gz focaccia-qemu-38c2b905d3beb27a056f7f53bcf7d9bce487e89d.zip | |
hw/arm/exynos4210: Drop ext_gic_irq[] from Exynos4210Irq struct
The only time we use the ext_gic_irq[] array in the Exynos4210Irq struct is during realize of the SoC -- we initialize it with the input IRQs of the external GIC device, and then connect those to outputs of other devices further on in realize (including in the exynos4210_init_board_irqs() function). Now that the ext_gic object is easily accessible as s->ext_gic we can make the connections directly from one device to the other without going via this array. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20220404154658.565020-10-peter.maydell@linaro.org
Diffstat (limited to '')
| -rw-r--r-- | include/hw/arm/exynos4210.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/hw/arm/exynos4210.h b/include/hw/arm/exynos4210.h index f35ae90000..08f52c511f 100644 --- a/include/hw/arm/exynos4210.h +++ b/include/hw/arm/exynos4210.h @@ -83,7 +83,6 @@ typedef struct Exynos4210Irq { qemu_irq int_combiner_irq[EXYNOS4210_MAX_INT_COMBINER_IN_IRQ]; qemu_irq ext_combiner_irq[EXYNOS4210_MAX_EXT_COMBINER_IN_IRQ]; - qemu_irq ext_gic_irq[EXYNOS4210_EXT_GIC_NIRQ]; } Exynos4210Irq; struct Exynos4210State { |