From 18d35163b8ae7508d57ff020024979ff5e3316c2 Mon Sep 17 00:00:00 2001 From: Erwan Gouriou Date: Fri, 17 Dec 2021 14:24:31 +0100 Subject: [PATCH] include/drivers/clock_control: stm32h7: Add missing symbol PLL SRC CSI Symbol STM32_PLL_SRC_CSI was missing and was preventing the config to be used. Signed-off-by: Erwan Gouriou --- include/drivers/clock_control/stm32_clock_control.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/drivers/clock_control/stm32_clock_control.h b/include/drivers/clock_control/stm32_clock_control.h index f5ba72c56ad..202faa7015c 100644 --- a/include/drivers/clock_control/stm32_clock_control.h +++ b/include/drivers/clock_control/stm32_clock_control.h @@ -114,6 +114,7 @@ #define STM32_PLL_SRC_MSI DT_SAME_NODE(DT_PLL_CLOCKS_CTRL, DT_NODELABEL(clk_msi)) #define STM32_PLL_SRC_MSIS DT_SAME_NODE(DT_PLL_CLOCKS_CTRL, DT_NODELABEL(clk_msis)) #define STM32_PLL_SRC_HSI DT_SAME_NODE(DT_PLL_CLOCKS_CTRL, DT_NODELABEL(clk_hsi)) +#define STM32_PLL_SRC_CSI DT_SAME_NODE(DT_PLL_CLOCKS_CTRL, DT_NODELABEL(clk_csi)) #define STM32_PLL_SRC_HSE DT_SAME_NODE(DT_PLL_CLOCKS_CTRL, DT_NODELABEL(clk_hse)) #define STM32_PLL_SRC_PLL2 DT_SAME_NODE(DT_PLL_CLOCKS_CTRL, DT_NODELABEL(pll2)) #endif