pwm/stm32_pwm: Remove LL_TIM_CC_EnablePreload call
diff --git a/hw/drivers/pwm/pwm_stm32/src/pwm_stm32.c b/hw/drivers/pwm/pwm_stm32/src/pwm_stm32.c
index f4ffe7f..1e02812 100644
--- a/hw/drivers/pwm/pwm_stm32/src/pwm_stm32.c
+++ b/hw/drivers/pwm/pwm_stm32/src/pwm_stm32.c
@@ -615,7 +615,6 @@
     OS_DEV_SETHANDLERS(odev, stm32_pwm_open, stm32_pwm_close);
 
     LL_TIM_EnableARRPreload(cfg->tim);
-    LL_TIM_CC_EnablePreload(cfg->tim);
     LL_TIM_SetCounter(pwm->timx, 0);
 
     /* If using advanced timer, enable main output (MOE). */