powerpc/44x/fsp2: add missing of_node_put
Early exits from for_each_compatible_node() should decrement the
node reference counter. Reported by Coccinelle:
./arch/powerpc/platforms/44x/fsp2.c:206:1-25: WARNING: Function
"for_each_compatible_node" should have of_node_put() before return
around line 218.
Fixes: 7813043e1b ("powerpc/44x/fsp2: Add irq error handlers")
Signed-off-by: Bixuan Cui <cuibixuan@linux.alibaba.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/1635406102-88719-1-git-send-email-cuibixuan@linux.alibaba.com
This commit is contained in:
committed by
Michael Ellerman
parent
fef071be57
commit
290fe8aa69
@@ -208,6 +208,7 @@ static void node_irq_request(const char *compat, irq_handler_t errirq_handler)
|
|||||||
if (irq == NO_IRQ) {
|
if (irq == NO_IRQ) {
|
||||||
pr_err("device tree node %pOFn is missing a interrupt",
|
pr_err("device tree node %pOFn is missing a interrupt",
|
||||||
np);
|
np);
|
||||||
|
of_node_put(np);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -215,6 +216,7 @@ static void node_irq_request(const char *compat, irq_handler_t errirq_handler)
|
|||||||
if (rc) {
|
if (rc) {
|
||||||
pr_err("fsp_of_probe: request_irq failed: np=%pOF rc=%d",
|
pr_err("fsp_of_probe: request_irq failed: np=%pOF rc=%d",
|
||||||
np, rc);
|
np, rc);
|
||||||
|
of_node_put(np);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user