diff options
author | Joachim Eastwood <manabian@gmail.com> | 2016-03-12 13:30:14 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-03-12 18:11:48 +0000 |
commit | a583c24deefdaaaf5bd96a1117b850904a294804 (patch) | |
tree | 3f35692c8468022e32d03dd1178408f57e237605 /drivers/iio/adc/Makefile | |
parent | 1c118b7230a16cb627061de9bd548ed7fdbdad24 (diff) | |
download | linux-stable-a583c24deefdaaaf5bd96a1117b850904a294804.tar.gz linux-stable-a583c24deefdaaaf5bd96a1117b850904a294804.tar.bz2 linux-stable-a583c24deefdaaaf5bd96a1117b850904a294804.zip |
iio: adc: add NXP LPC18xx ADC driver
Add base support for the 10-bit SAR ADC peripheral found
on NXP LPC18xx/43xx SoCs.
This is a minimal driver that does not support burst mode,
interrupts, DMA or hardware triggers.
User manual with register description can be found on:
LPC18xx: www.nxp.com/documents/user_manual/UM10430.pdf
LPC43xx: www.nxp.com/documents/user_manual/UM10503.pdf
Signed-off-by: Joachim Eastwood <manabian@gmail.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 b1aa456e6af3..1a4ac4590857 100644 --- a/drivers/iio/adc/Makefile +++ b/drivers/iio/adc/Makefile @@ -24,6 +24,7 @@ obj-$(CONFIG_HI8435) += hi8435.o obj-$(CONFIG_IMX7D_ADC) += imx7d_adc.o obj-$(CONFIG_INA2XX_ADC) += ina2xx-adc.o obj-$(CONFIG_LP8788_ADC) += lp8788_adc.o +obj-$(CONFIG_LPC18XX_ADC) += lpc18xx_adc.o obj-$(CONFIG_MAX1027) += max1027.o obj-$(CONFIG_MAX1363) += max1363.o obj-$(CONFIG_MCP320X) += mcp320x.o |