Skip to content

Commit c08c8fa

Browse files
committed
iio: adc: ad485x: add ad485x driver
Add support for the AD485X DAS familiy. Signed-off-by: Antoniu Miclaus <[email protected]>
1 parent 9bca655 commit c08c8fa

File tree

3 files changed

+1029
-0
lines changed

3 files changed

+1029
-0
lines changed

drivers/iio/adc/Kconfig

+12
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ config AD4130
3636
To compile this driver as a module, choose M here: the module will be
3737
called ad4130.
3838

39+
config AD485X
40+
tristate "Analog Device AD485x DAS Driver"
41+
depends on SPI
42+
select REGMAP_SPI
43+
select IIO_BACKEND
44+
help
45+
Say yes here to build support for Analog Devices AD485x high speed
46+
data acquisition system (DAS).
47+
48+
To compile this driver as a module, choose M here: the module will be
49+
called ad485x.
50+
3951
config AD7091R
4052
tristate
4153

drivers/iio/adc/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
obj-$(CONFIG_AB8500_GPADC) += ab8500-gpadc.o
88
obj-$(CONFIG_AD_SIGMA_DELTA) += ad_sigma_delta.o
99
obj-$(CONFIG_AD4130) += ad4130.o
10+
obj-$(CONFIG_AD485X) += ad485x.o
1011
obj-$(CONFIG_AD7091R) += ad7091r-base.o
1112
obj-$(CONFIG_AD7091R5) += ad7091r5.o
1213
obj-$(CONFIG_AD7091R8) += ad7091r8.o

0 commit comments

Comments
 (0)