aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Rosin <peda@axentia.se>2017-07-04 04:22:44 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-07-17 10:37:30 -0400
commit4c19c0ec73241b29a12daf913d46f0c15aa33783 (patch)
tree0b9a617d238dd7090e2661b6c481343e197d1482
parentd6e4bd1b52bf35e7fc14b52be7dbe784896398e3 (diff)
mux: remove the Kconfig question for the subsystem
The MULTIPLEXER question in the Kconfig might be confusing and is of dubious value. Remove it. This makes consumers responsible for selecting MULTIPLEXER, which they already do. Signed-off-by: Peter Rosin <peda@axentia.se> Reported-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/mux/Kconfig19
1 files changed, 5 insertions, 14 deletions
diff --git a/drivers/mux/Kconfig b/drivers/mux/Kconfig
index 7c754a0f14bb..19e4e904c9bf 100644
--- a/drivers/mux/Kconfig
+++ b/drivers/mux/Kconfig
@@ -2,20 +2,11 @@
2# Multiplexer devices 2# Multiplexer devices
3# 3#
4 4
5menuconfig MULTIPLEXER 5config MULTIPLEXER
6 tristate "Multiplexer subsystem" 6 tristate
7 help
8 Multiplexer controller subsystem. Multiplexers are used in a
9 variety of settings, and this subsystem abstracts their use
10 so that the rest of the kernel sees a common interface. When
11 multiple parallel multiplexers are controlled by one single
12 multiplexer controller, this subsystem also coordinates the
13 multiplexer accesses.
14
15 To compile the subsystem as a module, choose M here: the module will
16 be called mux-core.
17 7
18if MULTIPLEXER 8menu "Multiplexer drivers"
9 depends on MULTIPLEXER
19 10
20config MUX_ADG792A 11config MUX_ADG792A
21 tristate "Analog Devices ADG792A/ADG792G Multiplexers" 12 tristate "Analog Devices ADG792A/ADG792G Multiplexers"
@@ -56,4 +47,4 @@ config MUX_MMIO
56 To compile the driver as a module, choose M here: the module will 47 To compile the driver as a module, choose M here: the module will
57 be called mux-mmio. 48 be called mux-mmio.
58 49
59endif 50endmenu