Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pinctrl: samsung: Fix gs101 irq chip

When adding the dedicated gs101_wkup_irq_chip struct to support the eint
wakeup mask the .eint_con, eint_mask and .eint_pend fields were missed. The
result is that irqs on gs101 for the buttons etc are broken.

Reported-by: André Draszik <andre.draszik@linaro.org>
Fixes: 2642f55d44ce ("pinctrl: samsung: add support for gs101 wakeup mask programming")
Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
Tested-by: André Draszik <andre.draszik@linaro.org>
Link: https://lore.kernel.org/r/20250702-fix-gs101-irqchip-v1-1-ccc84b44ad72@linaro.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

authored by

Peter Griffin and committed by
Krzysztof Kozlowski
683d532d 2642f55d

+3
+3
drivers/pinctrl/samsung/pinctrl-exynos.c
··· 665 665 .irq_request_resources = exynos_irq_request_resources, 666 666 .irq_release_resources = exynos_irq_release_resources, 667 667 }, 668 + .eint_con = EXYNOS7_WKUP_ECON_OFFSET, 669 + .eint_mask = EXYNOS7_WKUP_EMASK_OFFSET, 670 + .eint_pend = EXYNOS7_WKUP_EPEND_OFFSET, 668 671 .eint_num_wakeup_reg = 3, 669 672 .eint_wake_mask_reg = GS101_EINT_WAKEUP_MASK, 670 673 .set_eint_wakeup_mask = gs101_pinctrl_set_eint_wakeup_mask,