chip: stm32l4: Correct config mistype

This commit is contained in:
Jeonghyun Kim 2021-04-07 23:06:30 +09:00 committed by Xiang Xiao
parent 060df22968
commit 9aa3edc11e
1 changed files with 2 additions and 2 deletions

View File

@ -437,8 +437,8 @@ static struct stm32l4_pwmchan_s g_pwm1channels[] =
.out1 =
{
.in_use = 1,
.pol = CONFIG_STM32L4L4_TIM1_CH4POL,
.idle = CONFIG_STM32L4L4_TIM1_CH4IDLE,
.pol = CONFIG_STM32L4_TIM1_CH4POL,
.idle = CONFIG_STM32L4_TIM1_CH4IDLE,
.pincfg = PWM_TIM1_CH4CFG,
}
#endif