diff options
author | Kamlakant Patel <kamlakant.patel@broadcom.com> | 2015-10-15 18:23:32 +0530 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-10-22 14:36:41 +0200 |
commit | 83ea24fd45f8793706b9a259842ab3f144661e25 (patch) | |
tree | 2d18c5d535192a9cce7a8c8da3efaad9cb4c21c7 /drivers/gpio/Kconfig | |
parent | 677b2ff4afd9996eabefc9472c701211b4b49e87 (diff) | |
download | lwn-83ea24fd45f8793706b9a259842ab3f144661e25.tar.gz lwn-83ea24fd45f8793706b9a259842ab3f144661e25.zip |
gpio: xlp: Convert to use gpiolib irqchip helpers
commit "325f0a (MIPS: Netlogic: Use chip_data for irq_chip methods)"
Updates "mips/netlogic/common/irq.c" to use chip_data to store interrupt
controller data pointer. Before this commit handler_data was used to
store interrupt controller data which caused errors while using
gpiochip_set_chained_irqchip.
Update XLP GPIO driver to use the gpiolib irqchip helpers.
And add missing depends on OF_GPIO in Kconfig.
Signed-off-by: Kamlakant Patel <kamlakant.patel@broadcom.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/Kconfig')
-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 597b8d4ab74f..77a796d2f9e1 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -512,7 +512,7 @@ config GPIO_XILINX config GPIO_XLP tristate "Netlogic XLP GPIO support" - depends on CPU_XLP + depends on CPU_XLP && OF_GPIO select GPIOLIB_IRQCHIP help This driver provides support for GPIO interface on Netlogic XLP MIPS64 |