mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 20:36:52 +00:00
Complete STM32 conversion to new DT macros by removing remaining occurences of DT_ST_STM32_ADC_FOO_LABEL. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
10 lines
233 B
C
10 lines
233 B
C
/* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
/* SoC level DTS fixup file */
|
|
|
|
#define DT_RTC_0_NAME DT_LABEL(DT_INST(0, st_stm32_rtc))
|
|
|
|
#define DT_ADC_0_NAME DT_LABEL(DT_INST(0, st_stm32_adc))
|
|
|
|
/* End of SoC Level DTS fixup file */
|