summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-05-08 07:39:10 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-05-08 07:39:10 -0600
commit8b312b8c3a30807a4633943c31f154e496fe6de8 (patch)
treefa0883811c99e44c1826f5ad5a20e8d8e67ebd38 /nuttx
parenteb4582f416e3544ab43e51df38109ebfb4c484c0 (diff)
downloadpx4-nuttx-8b312b8c3a30807a4633943c31f154e496fe6de8.tar.gz
px4-nuttx-8b312b8c3a30807a4633943c31f154e496fe6de8.tar.bz2
px4-nuttx-8b312b8c3a30807a4633943c31f154e496fe6de8.zip
LIS331DL driver: Correct build dependency. Sourceforge ticket #41 from Kosma Moczek
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/ChangeLog2
-rw-r--r--nuttx/drivers/sensors/Make.defs2
2 files changed, 3 insertions, 1 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index f6732216b..f40dda3ac 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -7304,3 +7304,5 @@
Framework to support Pascal P-Code as a binary format. At present this
logic is incomplete and really nothing more than a thought experiment
to determine the feasibility of the P-code binary format (2014-5-7).
+ * drivers/sensors/Make.defs: Correct build dependency. Sourceforge
+ ticket #41 from Kosma Moczek (2014-8-14).
diff --git a/nuttx/drivers/sensors/Make.defs b/nuttx/drivers/sensors/Make.defs
index 1713edb99..f6e2f94b6 100644
--- a/nuttx/drivers/sensors/Make.defs
+++ b/nuttx/drivers/sensors/Make.defs
@@ -38,7 +38,7 @@
ifeq ($(CONFIG_I2C),y)
-ifeq ($(CONFIG_I2C_TRANSFER),y)
+ifeq ($(CONFIG_LIS331DL),y)
CSRCS += lis331dl.c
endif