diff options
author | Greg Kroah-Hartman <gregkh@google.com> | 2016-09-19 17:41:54 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@google.com> | 2016-09-19 17:41:54 +0300 |
commit | 3e4b5b883780ed795843f68213c9db3f8d78391e (patch) | |
tree | 1b00c441f1f15f5d38ef0bdfd718573c85ade8a6 /drivers | |
parent | b14bb976260077415047737a0032f89275622c96 (diff) | |
download | linux-3e4b5b883780ed795843f68213c9db3f8d78391e.tar.xz |
staging: greybus: gpio: it's CONFIG_GPIOLIB, not CONFIG_GPIO
The GPIO dependancy is CONFIG_GPIOLIB, not CONFIG_GPIO, no wonder it
wasn't building properly...
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/staging/greybus/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/Kconfig b/drivers/staging/greybus/Kconfig index c169bc3ebe5b..ede91843eda5 100644 --- a/drivers/staging/greybus/Kconfig +++ b/drivers/staging/greybus/Kconfig @@ -147,7 +147,7 @@ if GREYBUS_BRIDGED_PHY config GREYBUS_GPIO tristate "Greybus GPIO Bridged PHY driver" - depends on GPIO + depends on GPIOLIB ---help--- Select this option if you have a device that follows the Greybus GPIO Bridged PHY Class specification. |