summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-01 14:16:34 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-01 14:16:34 -0600
commit29cb2c4566dcdbca4501d865c2565a664f3f265d (patch)
treea4488a312bcc9dc010a31a701e51ecf213b97a21
parentd7e4943ec1b282772f682f33ea3227fffb2d79c2 (diff)
downloadnuttx-29cb2c4566dcdbca4501d865c2565a664f3f265d.tar.gz
nuttx-29cb2c4566dcdbca4501d865c2565a664f3f265d.tar.bz2
nuttx-29cb2c4566dcdbca4501d865c2565a664f3f265d.zip
Fix a typo in the STM32F4 Discovery board Makefile. From Max Kriegleder
-rw-r--r--nuttx/ChangeLog2
-rw-r--r--nuttx/configs/stm32f4discovery/src/Makefile2
2 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 6992aa625..12789a106 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -6730,4 +6730,6 @@
kconfig-frontends tools (2014-3-1).
* configs/eagle100/nsh: Configuration converted to use the
kconfig-frontends tools (2014-3-1).
+ * configs/stm32f4discovery/src/Makefile: Fix type: stm32_pwm.c not
+ stm32_psm.c. Noted by Max Kriegleder (2014-3-1).
diff --git a/nuttx/configs/stm32f4discovery/src/Makefile b/nuttx/configs/stm32f4discovery/src/Makefile
index 02c83df93..132f0516c 100644
--- a/nuttx/configs/stm32f4discovery/src/Makefile
+++ b/nuttx/configs/stm32f4discovery/src/Makefile
@@ -61,7 +61,7 @@ CSRCS += stm32_usb.c
endif
ifeq ($(CONFIG_PWM),y)
-CSRCS += stm32_psm.c
+CSRCS += stm32_pwm.c
endif
ifeq ($(CONFIG_QENCODER),y)