summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/stm32/Make.defs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-22 14:07:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-03-22 14:07:45 +0000
commitbc9e9610965af3e3c00dfa604dcc33a55aaadae0 (patch)
tree433a83ad007b7ff22d900f2178dc1235420002f7 /nuttx/arch/arm/src/stm32/Make.defs
parent0c7804b74dcec7d746e95425157bd6afc1435de6 (diff)
downloadpx4-nuttx-bc9e9610965af3e3c00dfa604dcc33a55aaadae0.tar.gz
px4-nuttx-bc9e9610965af3e3c00dfa604dcc33a55aaadae0.tar.bz2
px4-nuttx-bc9e9610965af3e3c00dfa604dcc33a55aaadae0.zip
Change STM32 so that stm32_pmstop.c and stm32_pmstandby are built even if CONFIG_PM is not defined
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4502 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/stm32/Make.defs')
-rw-r--r--nuttx/arch/arm/src/stm32/Make.defs3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/arch/arm/src/stm32/Make.defs b/nuttx/arch/arm/src/stm32/Make.defs
index 79f0979cc..516cc434e 100644
--- a/nuttx/arch/arm/src/stm32/Make.defs
+++ b/nuttx/arch/arm/src/stm32/Make.defs
@@ -76,8 +76,9 @@ ifneq ($(CONFIG_IDLE_CUSTOM),y)
CHIP_CSRCS += stm32_idle.c
endif
+CHIP_CSRCS += stm32_pmstop.c stm32_pmstandby.c
ifeq ($(CONFIG_PM),y)
-CHIP_CSRCS += stm32_pminitialize.c stm32_pmstop.c stm32_pmstandby.c
+CHIP_CSRCS += stm32_pminitialize.c
endif
ifeq ($(CONFIG_STM32_ETHMAC),y)