diff options
author | Alan Tull <atull@altera.com> | 2014-03-06 14:29:40 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-03-06 20:16:27 -0500 |
commit | c7861f37b4c63b7f45d37b113acabbf352597c46 (patch) | |
tree | a19ed5f7f1428020f28667ed9cdbf4195c2e1869 /drivers/gpio | |
parent | feabf0cd4536f4853a501549e8c848d84b45dc36 (diff) |
fix build error in gpio-dwapb patch
fix build error with this message:
kernel/irq/Kconfig:41:error: recursive dependency detected!
kernel/irq/Kconfig:41: symbol GENERIC_IRQ_CHIP is selected by GPIO_DWAPB
drivers/gpio/Kconfig:131: symbol GPIO_DWAPB depends on IRQ_DOMAIN
kernel/irq/Kconfig:46: symbol IRQ_DOMAIN is selected by GENERIC_IRQ_CHIP
Signed-off-by: Alan Tull <atull@altera.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index b56bd0c13ec3..4d5096e5e33e 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig | |||
@@ -132,7 +132,7 @@ config GPIO_DWAPB | |||
132 | tristate "Synopsys DesignWare APB GPIO driver" | 132 | tristate "Synopsys DesignWare APB GPIO driver" |
133 | select GPIO_GENERIC | 133 | select GPIO_GENERIC |
134 | select GENERIC_IRQ_CHIP | 134 | select GENERIC_IRQ_CHIP |
135 | depends on OF_GPIO && IRQ_DOMAIN | 135 | depends on OF_GPIO |
136 | help | 136 | help |
137 | Say Y or M here to build support for the Synopsys DesignWare APB | 137 | Say Y or M here to build support for the Synopsys DesignWare APB |
138 | GPIO block. | 138 | GPIO block. |