diff options
author | Vlad Dogaru <vlad.dogaru@intel.com> | 2014-10-21 11:09:58 +0300 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-10-22 20:28:27 +0100 |
commit | d5c94568cc1d11dffee349468ae996e420381453 (patch) | |
tree | 0cd2dd3bc2c6b59db3cf576a33f808eb6577dcf9 /drivers/iio/pressure/Makefile | |
parent | c22e15f352066e8ee4d662f4a721c2fd10590f81 (diff) |
iio: add bmp280 pressure and temperature driver
Minimal implementation, can read temperature and data using direct mode.
Datasheet available at
<http://ae-bst.resource.bosch.com/media/products/dokumente/bmp280/BST-BMP280-DS001-09.pdf>
Signed-off-by: Vlad Dogaru <vlad.dogaru@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/pressure/Makefile')
-rw-r--r-- | drivers/iio/pressure/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/pressure/Makefile b/drivers/iio/pressure/Makefile index 90a37e85cf21..88011f2ae00e 100644 --- a/drivers/iio/pressure/Makefile +++ b/drivers/iio/pressure/Makefile @@ -3,6 +3,7 @@ # # When adding new entries keep the list in alphabetical order +obj-$(CONFIG_BMP280) += bmp280.o obj-$(CONFIG_HID_SENSOR_PRESS) += hid-sensor-press.o obj-$(CONFIG_MPL115) += mpl115.o obj-$(CONFIG_MPL3115) += mpl3115.o |