mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 18:54:09 +08:00
df1fd2de11
Add implementation for Maxim Integrated 5481, 5482, 5483, and 5484 digital potentiometer devices. Datasheet: http://datasheets.maximintegrated.com/en/ds/MAX5481-MAX5484.pdf Signed-off-by: Maury Anderson <maury.anderson@rockwellcollins.com> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Slawomir Stepien <sst@poczta.fm> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
12 lines
327 B
Makefile
12 lines
327 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_MAX5481) += max5481.o
|
|
obj-$(CONFIG_MAX5487) += max5487.o
|
|
obj-$(CONFIG_MCP4131) += mcp4131.o
|
|
obj-$(CONFIG_MCP4531) += mcp4531.o
|
|
obj-$(CONFIG_TPL0102) += tpl0102.o
|