You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2022/06/06 19:21:03 UTC

[incubator-nuttx] 01/05: chip: stm32l4: Correct config mistype

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 9aa3edc11e1db599c59396fd2a1eb87030fa7787
Author: Jeonghyun Kim <ki...@gmail.com>
AuthorDate: Wed Apr 7 23:06:30 2021 +0900

    chip: stm32l4: Correct config mistype
---
 arch/arm/src/stm32l4/stm32l4_pwm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/src/stm32l4/stm32l4_pwm.c b/arch/arm/src/stm32l4/stm32l4_pwm.c
index 57f680c2f7..eb23e83f49 100644
--- a/arch/arm/src/stm32l4/stm32l4_pwm.c
+++ b/arch/arm/src/stm32l4/stm32l4_pwm.c
@@ -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