Skip to content

Commit 683d532

Browse files
petegriffinkrzk
authored andcommitted
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 <[email protected]> Fixes: 2642f55 ("pinctrl: samsung: add support for gs101 wakeup mask programming") Signed-off-by: Peter Griffin <[email protected]> Tested-by: André Draszik <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Krzysztof Kozlowski <[email protected]>
1 parent 2642f55 commit 683d532

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

drivers/pinctrl/samsung/pinctrl-exynos.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,9 @@ static const struct exynos_irq_chip gs101_wkup_irq_chip __initconst = {
665665
.irq_request_resources = exynos_irq_request_resources,
666666
.irq_release_resources = exynos_irq_release_resources,
667667
},
668+
.eint_con = EXYNOS7_WKUP_ECON_OFFSET,
669+
.eint_mask = EXYNOS7_WKUP_EMASK_OFFSET,
670+
.eint_pend = EXYNOS7_WKUP_EPEND_OFFSET,
668671
.eint_num_wakeup_reg = 3,
669672
.eint_wake_mask_reg = GS101_EINT_WAKEUP_MASK,
670673
.set_eint_wakeup_mask = gs101_pinctrl_set_eint_wakeup_mask,

0 commit comments

Comments
 (0)