drivers: rtc: stm32: remove ll in driver's file name

The `ll` part of driver's file name indicates that the implementation uses
the STM32Cube Low Level ("LL") library, which is not interesting because
there is only *one* STM32 driver implementation anyways. Addtionnally, the
presence of `ll` among STM32 drivers is not consistent.

Get rid of it for this class's driver to match most other STM32 drivers.

Signed-off-by: Mathieu Choplain <mathieu.choplain-ext@st.com>
This commit is contained in:
Mathieu Choplain
2025-12-02 17:31:16 +01:00
committed by Anas Nashif
parent d0113285cf
commit 518725cb3b
3 changed files with 5 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ zephyr_library_sources_ifdef(CONFIG_RTC_RX8130CE rtc_rx8130ce.c)
zephyr_library_sources_ifdef(CONFIG_RTC_SF32LB rtc_sf32lb.c)
zephyr_library_sources_ifdef(CONFIG_RTC_SILABS_SIWX91X rtc_silabs_siwx91x.c)
zephyr_library_sources_ifdef(CONFIG_RTC_SMARTBOND rtc_smartbond.c)
zephyr_library_sources_ifdef(CONFIG_RTC_STM32 rtc_ll_stm32.c)
zephyr_library_sources_ifdef(CONFIG_RTC_STM32 rtc_stm32.c)
zephyr_library_sources_ifdef(CONFIG_RTC_TI_MSPM0 rtc_ti_mspm0.c)
zephyr_library_sources_ifdef(CONFIG_RTC_XMC4XXX rtc_xmc4xxx.c)
# zephyr-keep-sorted-stop

View File

@@ -41,7 +41,7 @@
#include <stdbool.h>
#include "rtc_utils.h"
#include "rtc_ll_stm32.h"
#include "rtc_stm32.h"
LOG_MODULE_REGISTER(rtc_stm32, CONFIG_RTC_LOG_LEVEL);

View File

@@ -5,8 +5,8 @@
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_DRIVERS_RTC_RTC_LL_STM32_H_
#define ZEPHYR_DRIVERS_RTC_RTC_LL_STM32_H_
#ifndef ZEPHYR_DRIVERS_RTC_RTC_STM32_H_
#define ZEPHYR_DRIVERS_RTC_RTC_STM32_H_
/**
* ES0584 / ES0631 §2.5.2; ES0632 §2.6.2 (both Rev. 2)
@@ -38,4 +38,4 @@
#endif /* CONFIG_RTC_ALARM && !CONFIG_SOC_SERIES_STM32WB0X */
#endif /* ZEPHYR_DRIVERS_RTC_RTC_LL_STM32_H_ */
#endif /* ZEPHYR_DRIVERS_RTC_RTC_STM32_H_ */