diff options
author | Philippe Mathieu-Daudé | 2021-01-31 19:44:45 +0100 |
---|---|---|
committer | Peter Maydell | 2021-02-03 11:15:50 +0100 |
commit | 5900c7a6d4ca1f968f51f3639ade56dba111455e (patch) | |
tree | 3979d68e48323f1280361cf84f617aacdb91aadc | |
parent | hw/arm/stm32f405_soc: Add missing dependency on OR_IRQ (diff) | |
download | qemu-5900c7a6d4ca1f968f51f3639ade56dba111455e.tar.gz qemu-5900c7a6d4ca1f968f51f3639ade56dba111455e.tar.xz qemu-5900c7a6d4ca1f968f51f3639ade56dba111455e.zip |
hw/arm/exynos4210: Add missing dependency on OR_IRQ
The Exynos4210 SoC uses an OR gate on the PL330 IRQ lines.
Fixes: dab15fbe2ab ("hw/arm/exynos4210: Fix DMA initialization")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-id: 20210131184449.382425-3-f4bug@amsat.org
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rw-r--r-- | hw/arm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig index a320a12485..223016bb4e 100644 --- a/hw/arm/Kconfig +++ b/hw/arm/Kconfig @@ -52,6 +52,7 @@ config EXYNOS4 select PTIMER select SDHCI select USB_EHCI_SYSBUS + select OR_IRQ config HIGHBANK bool |