Skip to content

Commit

Permalink
Merge tag 'iio-for-3.8f' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/git/jic23/iio into staging-next

Jonathan writes:
  "6th set of IIO new driver support, clean up and fixes for the 3.8 cycle
   (possibly wait until 3.9 cycle given timing).

   Here we have
   * the cleanup and move out of staging of ad7793.
   * addition support for additional parts to ad7793.
   * a basic new driver for TI ADC081C021/027
   * 4 little fixes for the recent addition of ad16136 and ad16480.

   So some nice work with nothing controversial or anything that
   will effect stuff outside the drivers in question."
  • Loading branch information
Greg Kroah-Hartman committed Nov 30, 2012
2 parents e143ef8 + 583f2de commit 7bcb57c
Show file tree
Hide file tree
Showing 10 changed files with 649 additions and 171 deletions.
22 changes: 22 additions & 0 deletions drivers/iio/adc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,18 @@ config AD7791
To compile this driver as a module, choose M here: the module will be
called ad7791.

config AD7793
tristate "Analog Devices AD7793 and similar ADCs driver"
depends on SPI
select AD_SIGMA_DELTA
help
Say yes here to build support for Analog Devices AD7785, AD7792, AD7793,
AD7794 and AD7795 SPI analog to digital converters (ADC).
If unsure, say N (but it's safe to say "Y").

To compile this driver as a module, choose M here: the
module will be called AD7793.

config AD7476
tristate "Analog Devices AD7476 and similar 1-channel ADCs driver"
depends on SPI
Expand Down Expand Up @@ -103,4 +115,14 @@ config MAX1363
max11646, max11647) Provides direct access via sysfs and buffered
data via the iio dev interface.

config TI_ADC081C
tristate "Texas Instruments ADC081C021/027"
depends on I2C
help
If you say yes here you get support for Texas Instruments ADC081C021
and ADC081C027 ADC chips.

This driver can also be built as a module. If so, the module will be
called ti-adc081c.

endmenu
3 changes: 3 additions & 0 deletions drivers/iio/adc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ obj-$(CONFIG_AD7266) += ad7266.o
obj-$(CONFIG_AD7298) += ad7298.o
obj-$(CONFIG_AD7476) += ad7476.o
obj-$(CONFIG_AD7791) += ad7791.o
obj-$(CONFIG_AD7793) += ad7793.o
obj-$(CONFIG_AD7887) += ad7887.o
obj-$(CONFIG_AT91_ADC) += at91_adc.o
obj-$(CONFIG_LP8788_ADC) += lp8788_adc.o
obj-$(CONFIG_MAX1363) += max1363.o
obj-$(CONFIG_TI_ADC081C) += ti-adc081c.o

Loading

0 comments on commit 7bcb57c

Please sign in to comment.