diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2019-01-14 22:14:49 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-01-21 16:33:33 +0300 |
commit | 588de43ca141d575042ea1b55bb8203f35b425c4 (patch) | |
tree | 212a9c1fbb01e07c747047b6fba54965dedf0d43 /drivers/gpio/Kconfig | |
parent | 5c4fee63c5ed8133e5a6011787a614c7dbc80c82 (diff) | |
download | linux-588de43ca141d575042ea1b55bb8203f35b425c4.tar.xz |
gpio: hlwd: Add basic IRQ support
This patch implements level-triggered IRQs in the Hollywood GPIO driver.
Edge triggered interrupts are not supported in this GPIO controller, so
I moved their emulation into a separate patch.
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
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 b5a2845347ec..f77180dd87bd 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -258,6 +258,7 @@ config GPIO_HLWD tristate "Nintendo Wii (Hollywood) GPIO" depends on OF_GPIO select GPIO_GENERIC + select GPIOLIB_IRQCHIP help Select this to support the GPIO controller of the Nintendo Wii. |