diff options
author | Marc Titinger <mtitinger@baylibre.com> | 2015-12-07 10:09:34 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2015-12-12 16:07:36 +0000 |
commit | c43a102e67db99c8bfe6e8a9280cec13ff53b789 (patch) | |
tree | 6b897c188d705aa0b007d6b9b08cdc766da21f58 /drivers/iio/adc/Makefile | |
parent | 466df4d0c1a5edee243698bdcad1ec4f3a1799b1 (diff) | |
download | linux-stable-c43a102e67db99c8bfe6e8a9280cec13ff53b789.tar.gz linux-stable-c43a102e67db99c8bfe6e8a9280cec13ff53b789.tar.bz2 linux-stable-c43a102e67db99c8bfe6e8a9280cec13ff53b789.zip |
iio: ina2xx: add support for TI INA2xx Power Monitors
in SOFTWARE buffer mode, a kthread will capture the active scan_elements
into a kfifo, then compute the remaining time until the next capture tick
and do an active wait (udelay).
This will produce a stream of up to fours channels plus a 64bits
timestamps (ns).
Tested with ina226, on BeagleBoneBlack.
Datasheet: http://www.ti.com/lit/gpn/ina226
Signed-off-by: Marc Titinger <mtitinger@baylibre.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc/Makefile')
-rw-r--r-- | drivers/iio/adc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/adc/Makefile b/drivers/iio/adc/Makefile index 91a65bf11c58..c62c5fa91c82 100644 --- a/drivers/iio/adc/Makefile +++ b/drivers/iio/adc/Makefile @@ -20,6 +20,7 @@ obj-$(CONFIG_CC10001_ADC) += cc10001_adc.o obj-$(CONFIG_DA9150_GPADC) += da9150-gpadc.o obj-$(CONFIG_EXYNOS_ADC) += exynos_adc.o obj-$(CONFIG_HI8435) += hi8435.o +obj-$(CONFIG_INA2XX_ADC) += ina2xx-adc.o obj-$(CONFIG_LP8788_ADC) += lp8788_adc.o obj-$(CONFIG_MAX1027) += max1027.o obj-$(CONFIG_MAX1363) += max1363.o |