aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2016-01-06 13:55:23 -0500
committerLinus Walleij <linus.walleij@linaro.org>2016-01-07 10:26:53 -0500
commita02588a0efd6008f70ab69318ebacd79cbd3dc6b (patch)
treef31514cf6a16f692ae19dc9bc367dbfe75ba2981
parentce5a7e81390b9ae28f8dc82505afa96c1787d312 (diff)
gpio: brcmstb: Allow building driver for BMIPS_GENERIC
BMIPS_GENERIC (arch/mips/bmips) is the Kconfig symbol associated with Broadcom MIPS-based STB chips. Since this driver is perfectly usable on these platforms as well, allow using it. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Acked-by: Gregory Fong <gregory.0xf0@gmail.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/gpio/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig
index b60f40a423f3..cb212ebb39ff 100644
--- a/drivers/gpio/Kconfig
+++ b/drivers/gpio/Kconfig
@@ -134,8 +134,8 @@ config GPIO_BCM_KONA
134 134
135config GPIO_BRCMSTB 135config GPIO_BRCMSTB
136 tristate "BRCMSTB GPIO support" 136 tristate "BRCMSTB GPIO support"
137 default y if ARCH_BRCMSTB 137 default y if (ARCH_BRCMSTB || BMIPS_GENERIC)
138 depends on OF_GPIO && (ARCH_BRCMSTB || COMPILE_TEST) 138 depends on OF_GPIO && (ARCH_BRCMSTB || BMIPS_GENERIC || COMPILE_TEST)
139 select GPIO_GENERIC 139 select GPIO_GENERIC
140 select GPIOLIB_IRQCHIP 140 select GPIOLIB_IRQCHIP
141 help 141 help