Skip to content

Commit fd8035e

Browse files
djiatsaf-stcfriedt
authored andcommitted
drivers: clock_control: stm32: replace pllsai1m with pllsaim
update the function name in driver since pllsai1m was changed to pllsaim in clock_stm32_ll_common.h. Signed-off-by: Fabrice DJIATSA <[email protected]>
1 parent e8a51e0 commit fd8035e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

drivers/clock_control/clock_stm32l4_l5_wb_wl.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ void config_pllsai1(void)
151151
#endif
152152
#if STM32_PLLSAI1_P_ENABLED
153153
LL_RCC_PLLSAI1_ConfigDomain_SAI(get_pllsai1_source(),
154-
pllsai1m(STM32_PLLSAI1_M_DIVISOR),
154+
pllsaim(STM32_PLLSAI1_M_DIVISOR),
155155
STM32_PLLSAI1_N_MULTIPLIER,
156156
pllsai1p(STM32_PLLSAI1_P_DIVISOR));
157157

@@ -160,7 +160,7 @@ void config_pllsai1(void)
160160

161161
#if STM32_PLLSAI1_Q_ENABLED
162162
LL_RCC_PLLSAI1_ConfigDomain_48M(get_pllsai1_source(),
163-
pllsai1m(STM32_PLLSAI1_M_DIVISOR),
163+
pllsaim(STM32_PLLSAI1_M_DIVISOR),
164164
STM32_PLLSAI1_N_MULTIPLIER,
165165
pllsai1q(STM32_PLLSAI1_Q_DIVISOR));
166166

@@ -169,7 +169,7 @@ void config_pllsai1(void)
169169

170170
#if STM32_PLLSAI1_R_ENABLED
171171
LL_RCC_PLLSAI1_ConfigDomain_ADC(get_pllsai1_source(),
172-
pllsai1m(STM32_PLLSAI1_M_DIVISOR),
172+
pllsaim(STM32_PLLSAI1_M_DIVISOR),
173173
STM32_PLLSAI1_N_MULTIPLIER,
174174
pllsai1r(STM32_PLLSAI1_R_DIVISOR));
175175

0 commit comments

Comments
 (0)