092cb71a60
This patch adds driver support for the Microchip MCP41xxx/42xxx family of digital potentiometers: DEVICE Wipers Positions Resistance (kOhm) MCP41010 1 256 10 MCP41050 1 256 50 MCP41100 1 256 100 MCP42010 2 256 10 MCP42050 2 256 50 MCP42100 2 256 100 Datasheet: http://ww1.microchip.com/downloads/en/devicedoc/11195c.pdf Signed-off-by: Chris Coffey <cmc@babblebit.net> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
16 lines
467 B
Makefile
16 lines
467 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_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
|