Skip to content

Commit dff5c3d

Browse files
committed
Merge tag 'renesas-pinctrl-fixes-for-v6.10-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers into fixes
pinctrl: renesas: Fixes for v6.10 - Fix PREEMPT_RT build failure on RZ/G2L. Signed-off-by: Linus Walleij <[email protected]>
2 parents 1613e60 + a39741d commit dff5c3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/pinctrl/renesas/pinctrl-rzg2l.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2071,11 +2071,11 @@ static void rzg2l_gpio_irq_restore(struct rzg2l_pinctrl *pctrl)
20712071
* This has to be atomically executed to protect against a concurrent
20722072
* interrupt.
20732073
*/
2074-
raw_spin_lock_irqsave(&pctrl->lock.rlock, flags);
2074+
spin_lock_irqsave(&pctrl->lock, flags);
20752075
ret = rzg2l_gpio_irq_set_type(data, irqd_get_trigger_type(data));
20762076
if (!ret && !irqd_irq_disabled(data))
20772077
rzg2l_gpio_irq_enable(data);
2078-
raw_spin_unlock_irqrestore(&pctrl->lock.rlock, flags);
2078+
spin_unlock_irqrestore(&pctrl->lock, flags);
20792079

20802080
if (ret)
20812081
dev_crit(pctrl->dev, "Failed to set IRQ type for virq=%u\n", virq);

0 commit comments

Comments
 (0)