diff options
author | Gregor Boirie <gregor.boirie@parrot.com> | 2016-09-13 14:23:14 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-09-18 20:42:21 +0200 |
commit | 03b262f2bbf43b82eaef82ffb3bc671d5b5c8da1 (patch) | |
tree | aba7517ff0dfaa1fbf5367985736826cf40974d3 /drivers/iio/pressure/Makefile | |
parent | iio: accel: Add driver for the mCube MC3230 3-axis accelerometer (diff) | |
download | linux-03b262f2bbf43b82eaef82ffb3bc671d5b5c8da1.tar.xz linux-03b262f2bbf43b82eaef82ffb3bc671d5b5c8da1.zip |
iio:pressure: initial zpa2326 barometer support
Introduce driver for Murata ZPA2326 pressure and temperature sensor:
http://www.murata.com/en-us/products/productdetail?partno=ZPA2326-0311A-R
Signed-off-by: Gregor Boirie <gregor.boirie@parrot.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/pressure/Makefile')
-rw-r--r-- | drivers/iio/pressure/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/iio/pressure/Makefile b/drivers/iio/pressure/Makefile index 7f395bed5e88..fff77185a5cc 100644 --- a/drivers/iio/pressure/Makefile +++ b/drivers/iio/pressure/Makefile @@ -22,6 +22,9 @@ st_pressure-y := st_pressure_core.o st_pressure-$(CONFIG_IIO_BUFFER) += st_pressure_buffer.o obj-$(CONFIG_T5403) += t5403.o obj-$(CONFIG_HP206C) += hp206c.o +obj-$(CONFIG_ZPA2326) += zpa2326.o +obj-$(CONFIG_ZPA2326_I2C) += zpa2326_i2c.o +obj-$(CONFIG_ZPA2326_SPI) += zpa2326_spi.o obj-$(CONFIG_IIO_ST_PRESS_I2C) += st_pressure_i2c.o obj-$(CONFIG_IIO_ST_PRESS_SPI) += st_pressure_spi.o |