diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2016-01-16 14:24:07 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-01-24 15:46:21 +0100 |
commit | 131497acd88a4456d99247cee457baefd2817835 (patch) | |
tree | 5272e44155727b8d3bf1ecc7380cc44bfac1da1c /drivers/iio/dac/Makefile | |
parent | iio: adc: axp288: remove redundant duplicate const on axp288_adc_channels (diff) | |
download | linux-131497acd88a4456d99247cee457baefd2817835.tar.xz linux-131497acd88a4456d99247cee457baefd2817835.zip |
iio: add ad5761 DAC driver
ad5761 is a 1-channel DAC with configurable output range.
The driver uses the regulator interface for its voltage ref.
It shares its register layout with ad5761r, ad5721 and ad5721r.
Differences:
ad5761* are 16 bit, ad5721* are 12 bits.
ad57*1r have an internal reference.
Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/dac/Makefile')
-rw-r--r-- | drivers/iio/dac/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/dac/Makefile b/drivers/iio/dac/Makefile index 63ae05633e0c..cb525b53fc7b 100644 --- a/drivers/iio/dac/Makefile +++ b/drivers/iio/dac/Makefile @@ -12,6 +12,7 @@ obj-$(CONFIG_AD5504) += ad5504.o obj-$(CONFIG_AD5446) += ad5446.o obj-$(CONFIG_AD5449) += ad5449.o obj-$(CONFIG_AD5755) += ad5755.o +obj-$(CONFIG_AD5761) += ad5761.o obj-$(CONFIG_AD5764) += ad5764.o obj-$(CONFIG_AD5791) += ad5791.o obj-$(CONFIG_AD5686) += ad5686.o |