diff options
author | Martin Kaiser <martin@kaiser.cx> | 2019-07-31 16:07:05 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2019-08-05 14:25:08 +0100 |
commit | 425c6f1063955fd2335b44b6ba628de3e3a81b4d (patch) | |
tree | 7a43e9b54541f569e1adcdad81c9d838f0808fee /drivers/iio/potentiometer/Makefile | |
parent | a444fa597e2a130d2c56f1bfbe131c62625d7b55 (diff) | |
download | linux-425c6f1063955fd2335b44b6ba628de3e3a81b4d.tar.gz linux-425c6f1063955fd2335b44b6ba628de3e3a81b4d.tar.bz2 linux-425c6f1063955fd2335b44b6ba628de3e3a81b4d.zip |
iio: potentiometer: add a driver for Maxim 5432-5435
Add a driver for the Maxim Integrated MAX5432-MAX5435 family of digital
potentiometers.
These potentiometers are connected via I2C and have 32 wiper
positions.
Supported functionality
- set the volatile wiper position
- read the potentiometer scale
Datasheet:
https://datasheets.maximintegrated.com/en/ds/MAX5432-MAX5435.pdf
Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/potentiometer/Makefile')
-rw-r--r-- | drivers/iio/potentiometer/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/potentiometer/Makefile b/drivers/iio/potentiometer/Makefile index 8ff55138cf12..091adf3cdd0b 100644 --- a/drivers/iio/potentiometer/Makefile +++ b/drivers/iio/potentiometer/Makefile @@ -6,6 +6,7 @@ # When adding new entries keep the list in alphabetical order obj-$(CONFIG_AD5272) += ad5272.o obj-$(CONFIG_DS1803) += ds1803.o +obj-$(CONFIG_MAX5432) += max5432.o obj-$(CONFIG_MAX5481) += max5481.o obj-$(CONFIG_MAX5487) += max5487.o obj-$(CONFIG_MCP4018) += mcp4018.o |