pinctrl: mvebu: Fix irq_of_parse_and_map() return value
[ Upstream commit 71bc7cf3be65bab441e03667cf215c557712976c ]
The irq_of_parse_and_map() returns 0 on failure, not a negative ERRNO.
Fixes: 2f22760539
("pinctrl: armada-37xx: Add irqchip support")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220422105339.78810-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
8a8b40d007
commit
84958f066d
@@ -781,7 +781,7 @@ static int armada_37xx_irqchip_register(struct platform_device *pdev,
|
|||||||
for (i = 0; i < nr_irq_parent; i++) {
|
for (i = 0; i < nr_irq_parent; i++) {
|
||||||
int irq = irq_of_parse_and_map(np, i);
|
int irq = irq_of_parse_and_map(np, i);
|
||||||
|
|
||||||
if (irq < 0)
|
if (!irq)
|
||||||
continue;
|
continue;
|
||||||
girq->parents[i] = irq;
|
girq->parents[i] = irq;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user