diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2018-06-21 21:54:42 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2018-06-26 10:46:27 +0300 |
commit | 3a358e22844d4a88d872891c77d7eee4fbca5f37 (patch) | |
tree | f33e71e415183efb3234cd88d42a913e153ad054 /drivers/w1 | |
parent | 90b39402e9f31c4aab48dc1a43d85a724065793f (diff) | |
download | linux-3a358e22844d4a88d872891c77d7eee4fbca5f37.tar.xz |
w1: Allow compile test of GPIO consumers if !GPIOLIB
The GPIO subsystem provides dummy GPIO consumer functions if GPIOLIB is
not enabled. Hence drivers that depend on GPIOLIB, but use GPIO consumer
functionality only, can still be compiled if GPIOLIB is not enabled.
Relax the dependency on GPIOLIB if COMPILE_TEST is enabled, where
appropriate.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/w1')
-rw-r--r-- | drivers/w1/masters/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/w1/masters/Kconfig b/drivers/w1/masters/Kconfig index 1708b2300c7a..00827d2897b5 100644 --- a/drivers/w1/masters/Kconfig +++ b/drivers/w1/masters/Kconfig @@ -49,7 +49,7 @@ config W1_MASTER_DS1WM config W1_MASTER_GPIO tristate "GPIO 1-wire busmaster" - depends on GPIOLIB + depends on GPIOLIB || COMPILE_TEST help Say Y here if you want to communicate with your 1-wire devices using GPIO pins. This driver uses the GPIO API to control the wire. |