From 0364dd3512e09447218acef992acf4385561957d Mon Sep 17 00:00:00 2001 From: Khaoula Bidani Date: Mon, 27 Jan 2025 09:47:28 +0100 Subject: [PATCH] drivers : rtc: clean up usage of "select USE_STM32_LL" clean up usage of select USE_STM32_LL_RCC and select USE_STM32_LL_PWR from Kconfig.stm32 this modifications due to the include unconditionally of stm32xxxx_ll_rcc.h and stm32xxxx_ll_pwr.h in HAL. Signed-off-by: Khaoula Bidani --- drivers/rtc/Kconfig.stm32 | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/rtc/Kconfig.stm32 b/drivers/rtc/Kconfig.stm32 index 1cdbe99ca0b..777343c5286 100644 --- a/drivers/rtc/Kconfig.stm32 +++ b/drivers/rtc/Kconfig.stm32 @@ -6,7 +6,5 @@ config RTC_STM32 default y if !COUNTER depends on DT_HAS_ST_STM32_RTC_ENABLED && !SOC_SERIES_STM32F1X select USE_STM32_LL_RTC - select USE_STM32_LL_PWR - select USE_STM32_LL_RCC help Build RTC driver for STM32 SoCs, excluding STM32F1 series.