diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2017-12-29 15:14:59 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-02-22 16:18:43 +0100 |
commit | 424529fb7954616dc65e64111a6505c4d5db7d3f (patch) | |
tree | 3777b6c0ba06958a7d2b65407ba5686e5f013188 /init/Kconfig | |
parent | 17a2a129b309d502d638164b2c515ff205c148df (diff) | |
download | linux-424529fb7954616dc65e64111a6505c4d5db7d3f.tar.gz linux-424529fb7954616dc65e64111a6505c4d5db7d3f.tar.bz2 linux-424529fb7954616dc65e64111a6505c4d5db7d3f.zip |
pc104: Add EXPERT dependency for PC104 Kconfig option
PC/104 device driver Kconfig options previously had an implicit EXPERT
dependency by way of an explicit ISA_BUS_API dependency. Now that these
driver Kconfig options select ISA_BUS_API rather than depend on it, the
PC104 Kconfig option should have an explicit EXPERT dependency.
The PC/104 form factor and bus architecture are common in embedded
and specialized systems, but uncommon in typical desktop setups. For
this reason, it is best to mask these devices and configurations via the
EXPERT Kconfig option because the majority of users will never need to
concern themselves with PC/104.
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'init/Kconfig')
-rw-r--r-- | init/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/Kconfig b/init/Kconfig index e37f4b2a6445..221cac95044f 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -1438,7 +1438,7 @@ config PERF_USE_VMALLOC See tools/perf/design.txt for details config PC104 - bool "PC/104 support" + bool "PC/104 support" if EXPERT help Expose PC/104 form factor device drivers and options available for selection and configuration. Enable this option if your target |