pinctrl: mvebu: Fix irq_of_parse_and_map() return value
The irq_of_parse_and_map() returns 0 on failure, not a negative ERRNO. Fixes: 2f227605394b ("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>
This commit is contained in:
parent
453200af8a
commit
71bc7cf3be
@ -773,7 +773,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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user