This is an automated email from the ASF dual-hosted git repository.

simbit18 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit a5f8fdaa2e284c2e45222b009f52ef03404e6faf
Author: raiden00pl <[email protected]>
AuthorDate: Wed Aug 19 09:51:53 2026 +0200

    arch/stm32: remove dead STM32 Cortex-M0 GPIO IRQ init
    
    CONFIG_STM32_GPIOIRQ has never had a Kconfig definition, and the guarded
    stm32_gpioirqinitialize function has no declaration or implementation.
    
    Signed-off-by: raiden00pl <[email protected]>
    Assisted-by: OpenAI Codex:gpt-5
---
 arch/arm/src/common/stm32/stm32_irq_m0_v1.c | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/arch/arm/src/common/stm32/stm32_irq_m0_v1.c 
b/arch/arm/src/common/stm32/stm32_irq_m0_v1.c
index fb71ce0917a..77a179b68d3 100644
--- a/arch/arm/src/common/stm32/stm32_irq_m0_v1.c
+++ b/arch/arm/src/common/stm32/stm32_irq_m0_v1.c
@@ -213,14 +213,6 @@ void up_irqinitialize(void)
 
   stm32_dumpnvic("initial", NR_IRQS);
 
-  /* Initialize logic to support a second level of interrupt decoding for
-   * configured pin interrupts.
-   */
-
-#ifdef CONFIG_STM32_GPIOIRQ
-  stm32_gpioirqinitialize();
-#endif
-
 #ifndef CONFIG_SUPPRESS_INTERRUPTS
 
   /* And finally, enable interrupts */

Reply via email to