mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-27 17:36:06 +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>
14 lines
277 B
C
14 lines
277 B
C
/*
|
|
* Copyright (c) 2019 Linaro Limited
|
|
*
|
|
* 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 */
|