diff options
author | Tom Rini | 2017-05-12 22:33:21 -0400 |
---|---|---|
committer | Tom Rini | 2017-05-15 10:40:00 -0400 |
commit | 29cb2b3b903ce12e7abc2fc9a8cfb12a0be36852 (patch) | |
tree | 6b1a890b717c1d9a77fa8cc813d73c4c516a6cf6 /drivers/gpio/Kconfig | |
parent | bdf10677a96d1d0c4da209b0a5d7c877760a4984 (diff) |
gpio: Move OMAP_GPIO to Kconfig
This driver is used often enough such that we want to have this enabled
by default on any ARCH_OMAP2PLUS board, and this only compiles on
ARCH_OMAP2PLUS due to required defines, so mark that as the depends.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/gpio/Kconfig')
-rw-r--r-- | drivers/gpio/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 325d053931f..15135e538dc 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -95,6 +95,14 @@ config MSM_GPIO - APQ8016 - MSM8916 +config OMAP_GPIO + bool "TI OMAP GPIO driver" + depends on ARCH_OMAP2PLUS + default y + help + Support GPIO controllers on the TI OMAP3/4/5 and related (such as + AM335x/AM43xx/AM57xx/DRA7xx/etc) families of SoCs. + config PM8916_GPIO bool "Qualcomm PM8916 PMIC GPIO/keypad driver" depends on DM_GPIO && PMIC_PM8916 |