mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
9a47894fbe
Add implementation for Maxim MAX5487, MAX5488, MAX5489 digital potentiometers. Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX5487-MAX5489.pdf Signed-off-by: Cristina Moraru <cristina.moraru09@gmail.com> CC: Daniel Baluta <daniel.baluta@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
11 lines
292 B
Makefile
11 lines
292 B
Makefile
#
|
|
# Makefile for industrial I/O potentiometer drivers
|
|
#
|
|
|
|
# When adding new entries keep the list in alphabetical order
|
|
obj-$(CONFIG_DS1803) += ds1803.o
|
|
obj-$(CONFIG_MAX5487) += max5487.o
|
|
obj-$(CONFIG_MCP4131) += mcp4131.o
|
|
obj-$(CONFIG_MCP4531) += mcp4531.o
|
|
obj-$(CONFIG_TPL0102) += tpl0102.o
|