]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
gpio: ljca: Fix duplicated IRQ mapping
authorHaotian Zhang <vulab@iscas.ac.cn>
Thu, 23 Oct 2025 07:02:30 +0000 (15:02 +0800)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Thu, 23 Oct 2025 12:30:11 +0000 (14:30 +0200)
commit4c4e6ea4a120cc5ab58e437c6ba123cbfc357d45
tree60a14efba27c44e8658ac95faacff17528894a9d
parent5f4bfd03bc9deec480bf9f8cb37e63e590fd8212
gpio: ljca: Fix duplicated IRQ mapping

The generic_handle_domain_irq() function resolves the hardware IRQ
internally. The driver performed a duplicative mapping by calling
irq_find_mapping() first, which could lead to an RCU stall.

Delete the redundant irq_find_mapping() call and pass the hardware IRQ
directly to generic_handle_domain_irq().

Fixes: c5a4b6fd31e8 ("gpio: Add support for Intel LJCA USB GPIO driver")
Signed-off-by: Haotian Zhang <vulab@iscas.ac.cn>
Link: https://lore.kernel.org/r/20251023070231.1305-1-vulab@iscas.ac.cn
[Bartosz: remove unused variable]
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
drivers/gpio/gpio-ljca.c