diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2015-08-02 11:09:54 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-08-13 10:48:52 +0200 |
commit | 36890997b0d219427e9d9d2aad5d46eb44fe808d (patch) | |
tree | b3fa77b7f7bcf863d2f228006dbe36665836b61b /net/rfkill | |
parent | eb6d9293dfed245a114cad7d975259963e1e04c2 (diff) | |
download | blackbird-op-linux-36890997b0d219427e9d9d2aad5d46eb44fe808d.tar.gz blackbird-op-linux-36890997b0d219427e9d9d2aad5d46eb44fe808d.zip |
rfkill: 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>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/rfkill')
-rw-r--r-- | net/rfkill/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/rfkill/Kconfig b/net/rfkill/Kconfig index 4c10e7e6c9f6..598d374f6a35 100644 --- a/net/rfkill/Kconfig +++ b/net/rfkill/Kconfig @@ -36,7 +36,8 @@ config RFKILL_REGULATOR config RFKILL_GPIO tristate "GPIO RFKILL driver" - depends on RFKILL && GPIOLIB + depends on RFKILL + depends on GPIOLIB || COMPILE_TEST default n help If you say yes here you get support of a generic gpio RFKILL |