diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-02-05 15:49:08 (GMT) |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2015-03-04 12:48:34 (GMT) |
commit | a39294bdf4b03803156c771968a6e2ba6ebb505b (patch) | |
tree | a3171961fce91b36d5ffb47e47c543ed3db71a24 /drivers/gpio/Kconfig | |
parent | 6b516a1093006a39368dd11a5396be5bb00c99df (diff) | |
download | linux-a39294bdf4b03803156c771968a6e2ba6ebb505b.tar.xz |
gpio: pcf857x: Switch to use gpiolib irqchip helpers
Switch the PCF857x GPIO driver to use the gpiolib irqchip helpers.
This driver uses a nested threaded interrupt, hence handle_nested_irq()
and gpiochip_set_chained_irqchip() must be used.
Note that this removes the checks added in commit 21fd3cd1874a2ac8
("gpio: pcf857x: call the gpio user handler iff gpio_to_irq is done"),
as the interrupt mappings are no longer created on-demand by the driver,
but by gpiochip_irqchip_add() during initialization.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/Kconfig')
-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 09bc70b..249845a 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -604,6 +604,7 @@ config GPIO_PCA953X_IRQ config GPIO_PCF857X tristate "PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders" depends on I2C + select GPIOLIB_IRQCHIP select IRQ_DOMAIN help Say yes here to provide access to most "quasi-bidirectional" I2C |