summaryrefslogtreecommitdiff
path: root/drivers/mux/Makefile
diff options
context:
space:
mode:
authorMircea Caprioru <mircea.caprioru@analog.com>2018-08-01 10:37:40 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-08-02 10:23:02 +0200
commit8b9ce6954c05e3e4115f54444c7eaf2aa2dd5e65 (patch)
tree4891b7d99ecab8899c518e015aa6853f341573e4 /drivers/mux/Makefile
parent94aea0c6f7bdb5d224b1f48ab0e93f40bf447a4c (diff)
mux: adgs1408: new driver for Analog Devices ADGS1408/1409 mux
This patch adds basic support for Analog Device ADGS1408/09 SPI mux controller. The device is probed and set to a disabled state. It uses the new mux controller framework. Signed-off-by: Mircea Caprioru <mircea.caprioru@analog.com> Signed-off-by: Peter Rosin <peda@axentia.se> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/mux/Makefile')
-rw-r--r--drivers/mux/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mux/Makefile b/drivers/mux/Makefile
index c3d883955fd5..6e9fa47daf56 100644
--- a/drivers/mux/Makefile
+++ b/drivers/mux/Makefile
@@ -5,10 +5,12 @@
mux-core-objs := core.o
mux-adg792a-objs := adg792a.o
+mux-adgs1408-objs := adgs1408.o
mux-gpio-objs := gpio.o
mux-mmio-objs := mmio.o
obj-$(CONFIG_MULTIPLEXER) += mux-core.o
obj-$(CONFIG_MUX_ADG792A) += mux-adg792a.o
+obj-$(CONFIG_MUX_ADGS1408) += mux-adgs1408.o
obj-$(CONFIG_MUX_GPIO) += mux-gpio.o
obj-$(CONFIG_MUX_MMIO) += mux-mmio.o