mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
425c6f1063
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>
17 lines
502 B
Makefile
17 lines
502 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for industrial I/O potentiometer drivers
|
|
#
|
|
|
|
# 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
|
|
obj-$(CONFIG_MCP4131) += mcp4131.o
|
|
obj-$(CONFIG_MCP4531) += mcp4531.o
|
|
obj-$(CONFIG_MCP41010) += mcp41010.o
|
|
obj-$(CONFIG_TPL0102) += tpl0102.o
|