Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 76ec9d18 authored by Alexandre Courbot's avatar Alexandre Courbot
Browse files

Convert selectors of GENERIC_GPIO to GPIOLIB



GENERIC_GPIO is now equivalent to GPIOLIB and features that depended on
GENERIC_GPIO can now depend on GPIOLIB to allow removal of this option.

Signed-off-by: default avatarAlexandre Courbot <acourbot@nvidia.com>
Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Acked-by: default avatarGrant Likely <grant.likely@secretlab.ca>
parent a2523d3c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -156,7 +156,7 @@ source "mm/Kconfig"

config LEDS
	def_bool y
	depends on GENERIC_GPIO
	depends on GPIOLIB

config ALIGNMENT_TRAP
	def_bool y
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ comment "Extcon Device Drivers"

config EXTCON_GPIO
	tristate "GPIO extcon support"
	depends on GENERIC_GPIO
	depends on GPIOLIB
	help
	  Say Y here to enable GPIO based extcon support. Note that GPIO
	  extcon supports single state per extcon instance.
+2 −2
Original line number Diff line number Diff line
@@ -363,7 +363,7 @@ config I2C_BLACKFIN_TWI_CLK_KHZ

config I2C_CBUS_GPIO
	tristate "CBUS I2C driver"
	depends on GENERIC_GPIO
	depends on GPIOLIB
	help
	  Support for CBUS access using I2C API. Mostly relevant for Nokia
	  Internet Tablets (770, N800 and N810).
@@ -436,7 +436,7 @@ config I2C_EG20T

config I2C_GPIO
	tristate "GPIO-based bitbanging I2C"
	depends on GENERIC_GPIO
	depends on GPIOLIB
	select I2C_ALGOBIT
	help
	  This is a very simple bitbanging I2C driver utilizing the
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ menu "Multiplexer I2C Chip support"

config I2C_MUX_GPIO
	tristate "GPIO-based I2C multiplexer"
	depends on GENERIC_GPIO
	depends on GPIOLIB
	help
	  If you say yes to this option, support will be included for a
	  GPIO based I2C multiplexer. This driver provides access to
+3 −3
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@ config KEYBOARD_EP93XX

config KEYBOARD_GPIO
	tristate "GPIO Buttons"
	depends on GENERIC_GPIO
	depends on GPIOLIB
	help
	  This driver implements support for buttons connected
	  to GPIO pins of various CPUs (and some other chips).
@@ -190,7 +190,7 @@ config KEYBOARD_GPIO

config KEYBOARD_GPIO_POLLED
	tristate "Polled GPIO buttons"
	depends on GENERIC_GPIO
	depends on GPIOLIB
	select INPUT_POLLDEV
	help
	  This driver implements support for buttons connected
@@ -241,7 +241,7 @@ config KEYBOARD_TCA8418

config KEYBOARD_MATRIX
	tristate "GPIO driven matrix keypad support"
	depends on GENERIC_GPIO
	depends on GPIOLIB
	select INPUT_MATRIXKMAP
	help
	  Enable support for GPIO driven matrix keypad.
Loading