We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1613e60 + a39741d commit dff5c3dCopy full SHA for dff5c3d
drivers/pinctrl/renesas/pinctrl-rzg2l.c
@@ -2071,11 +2071,11 @@ static void rzg2l_gpio_irq_restore(struct rzg2l_pinctrl *pctrl)
2071
* This has to be atomically executed to protect against a concurrent
2072
* interrupt.
2073
*/
2074
- raw_spin_lock_irqsave(&pctrl->lock.rlock, flags);
+ spin_lock_irqsave(&pctrl->lock, flags);
2075
ret = rzg2l_gpio_irq_set_type(data, irqd_get_trigger_type(data));
2076
if (!ret && !irqd_irq_disabled(data))
2077
rzg2l_gpio_irq_enable(data);
2078
- raw_spin_unlock_irqrestore(&pctrl->lock.rlock, flags);
+ spin_unlock_irqrestore(&pctrl->lock, flags);
2079
2080
if (ret)
2081
dev_crit(pctrl->dev, "Failed to set IRQ type for virq=%u\n", virq);
0 commit comments