diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-02-04 18:59:41 +0800 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-02-05 11:13:59 +0100 |
commit | 90d16a43d50c6557ea8d6b7d3b597025c932ad92 (patch) | |
tree | 6be5e142daafee3596b4815d8ee23b83b0340348 /drivers/gpio | |
parent | 21708c991eaea76080a9700117181c0d467af9fc (diff) |
gpio: tb10x: GPIO_TB10X needs to select GENERIC_IRQ_CHIP
gpio-tb10x driver uses generic irq chip APIs (irq_alloc_domain_generic_chips,
irq_remove_generic_chip), so it needs to select GENERIC_IRQ_CHIP to avoid build
error.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 697338772b64..903f24d28ba0 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -403,6 +403,7 @@ config GPIO_GRGPIO config GPIO_TB10X bool + select GENERIC_IRQ_CHIP select OF_GPIO comment "I2C GPIO expanders:" |