From: Greg Kroah-Hartman Date: Mon, 19 Sep 2016 14:41:54 +0000 (+0200) Subject: staging: greybus: gpio: it's CONFIG_GPIOLIB, not CONFIG_GPIO X-Git-Tag: v4.9-rc1~119^2~378^2~10 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=3e4b5b883780ed795843f68213c9db3f8d78391e;p=linux.git 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 --- 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.