[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 1/7] hw/arm/stm32f405_soc: Add missing dependency on OR_IRQ
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH v2 1/7] hw/arm/stm32f405_soc: Add missing dependency on OR_IRQ |
Date: |
Sun, 31 Jan 2021 11:59:12 +0100 |
The STM32F405 SoC uses an OR gate on its ADC IRQs.
Fixes: 529fc5fd3e1 ("hw/arm: Add the STM32F4xx SoC")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
Cc: alistair@alistair23.me
---
hw/arm/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/hw/arm/Kconfig b/hw/arm/Kconfig
index 13cc42dcc84..a320a124855 100644
--- a/hw/arm/Kconfig
+++ b/hw/arm/Kconfig
@@ -336,6 +336,7 @@ config STM32F205_SOC
config STM32F405_SOC
bool
select ARM_V7M
+ select OR_IRQ
select STM32F4XX_SYSCFG
select STM32F4XX_EXTI
--
2.26.2
- [PATCH v2 0/7] hw/arm: Misc trivial fixes/cleanups, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 1/7] hw/arm/stm32f405_soc: Add missing dependency on OR_IRQ,
Philippe Mathieu-Daudé <=
- [PATCH v2 2/7] hw/arm/exynos4210: Add missing dependency on OR_IRQ, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 3/7] hw/arm/xlnx-versal: Versal SoC requires ZDMA, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 4/7] hw/arm/virt: Do not include 64-bit CPUs in 32-bit build, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 5/7] hw/arm/sbsa-ref: Restrict SBSA-ref board to 64-bit build, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 6/7] hw/arm/xlnx-zcu102: Restrict ZynqMP ZCU102 board to 64-bit build, Philippe Mathieu-Daudé, 2021/01/31
- [PATCH v2 7/7] hw/arm: Display CPU type in machine description, Philippe Mathieu-Daudé, 2021/01/31