drivers: clock_control: stm32: Can't get MSI freq

Update driver to allow MSI frequency retrieval.

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
This commit is contained in:
Erwan Gouriou 2023-01-23 15:26:08 +01:00 committed by Carles Cufí
parent e7a60e30b9
commit 7b221fbe45

View file

@ -381,6 +381,11 @@ static int stm32_clock_control_get_subsys_rate(const struct device *clock,
*rate = STM32_HSI_FREQ;
break;
#endif
#if defined(STM32_SRC_MSI)
case STM32_SRC_MSI:
*rate = get_msi_frequency();
break;
#endif
#if defined(STM32_SRC_HSE)
case STM32_SRC_HSE:
*rate = STM32_HSE_FREQ;