You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by ac...@apache.org on 2020/11/29 15:53:48 UTC

[incubator-nuttx] branch master updated: nrf52 PWM: fix missing trailing comma (build failure)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 6637c5a  nrf52 PWM: fix missing trailing comma (build failure)
6637c5a is described below

commit 6637c5a0b9a49fe28611f4ec3013cb3911a6c389
Author: Matias N <ma...@protobits.dev>
AuthorDate: Sun Nov 8 22:14:31 2020 -0300

    nrf52 PWM: fix missing trailing comma (build failure)
---
 arch/arm/src/nrf52/nrf52_pwm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/src/nrf52/nrf52_pwm.c b/arch/arm/src/nrf52/nrf52_pwm.c
index 97fa421..3503eca 100644
--- a/arch/arm/src/nrf52/nrf52_pwm.c
+++ b/arch/arm/src/nrf52/nrf52_pwm.c
@@ -153,7 +153,7 @@ struct nrf52_pwm_s g_nrf52_pwm0 =
 struct nrf52_pwm_s g_nrf52_pwm1 =
 {
   .ops     = &g_nrf52_pwmops,
-  .base    = NRF52_PWM1_BASE
+  .base    = NRF52_PWM1_BASE,
 #ifdef CONFIG_NRF52_PWM1_CH0
   .ch0_pin = NRF52_PWM1_CH0_PIN,
 #endif