arch/arm/src/stm32f7: remove duplicated stm32_exti_alarm.c source

stm32_exti_alarm.c was added twice in Make.defs and CMakeLists.txt.
Drop the duplicate block

Signed-off-by: raiden00pl <raiden00@railab.me>
This commit is contained in:
raiden00pl
2026-06-17 17:10:35 +08:00
committed by Xiang Xiao
parent e23af454f1
commit 7f479a7e84
2 changed files with 0 additions and 12 deletions
-6
View File
@@ -132,12 +132,6 @@ if(CONFIG_STM32F7_QUADSPI)
list(APPEND SRCS stm32_qspi.c)
endif()
if(CONFIG_STM32F7_RTC)
if(CONFIG_RTC_ALARM)
list(APPEND SRCS stm32_exti_alarm.c)
endif()
endif()
if(CONFIG_STM32F7_ETHMAC)
list(APPEND SRCS stm32_ethernet.c)
endif()
-6
View File
@@ -134,12 +134,6 @@ ifeq ($(CONFIG_STM32F7_QUADSPI),y)
CHIP_CSRCS += stm32_qspi.c
endif
ifeq ($(CONFIG_STM32F7_RTC),y)
ifeq ($(CONFIG_RTC_ALARM),y)
CHIP_CSRCS += stm32_exti_alarm.c
endif
endif
ifeq ($(CONFIG_STM32F7_ETHMAC),y)
CHIP_CSRCS += stm32_ethernet.c
endif