From 6d59603610f6632b55f849d27b233cb09b5b1141 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 6 Aug 2015 16:33:02 -0600 Subject: [PATCH] Trivial updates from review of LM92 driver; Update ChangeLog --- ChangeLog | 5 +++-- drivers/sensors/Kconfig | 10 +++++----- drivers/sensors/Make.defs | 1 + 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index d344d1e241..8893499c99 100755 --- a/ChangeLog +++ b/ChangeLog @@ -10786,5 +10786,6 @@ conversions needed for CAN FD mode (2015-08-05). * arch/arm/src/samv7: Add an MCAN driver for the SAMV7 platform (2015-08-06). - - + * drivers/sensors/lm92.c and include/nuttx/sensors/lm92.h: Add a driver + for the LM92 temperature sensor. Contributed by Paul Patience + (2015-08-06). diff --git a/drivers/sensors/Kconfig b/drivers/sensors/Kconfig index 66c25c770b..98de706814 100644 --- a/drivers/sensors/Kconfig +++ b/drivers/sensors/Kconfig @@ -80,11 +80,11 @@ config LM75 the TI TMP100/101. config LM92 - bool "TI LM92 Temperature Sensor support" - default n - select I2C - ---help--- - Enable driver support for the TI LM92 Temperature Sensor. + bool "TI LM92 Temperature Sensor support" + default n + select I2C + ---help--- + Enable driver support for the TI LM92 Temperature Sensor. config QENCODER bool "Qencoder" diff --git a/drivers/sensors/Make.defs b/drivers/sensors/Make.defs index 1f369e801c..1b34e93f61 100644 --- a/drivers/sensors/Make.defs +++ b/drivers/sensors/Make.defs @@ -64,6 +64,7 @@ endif ifeq ($(CONFIG_LM92),y) CSRCS += lm92.c endif + endif # CONFIG_I2C # These drivers depend on SPI support