mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-02 10:43:57 +08:00
net: mscc: ocelot: Add of_node_put() before goto
Fix following coccicheck warning: ./drivers/net/ethernet/mscc/ocelot_vsc7514.c:946:1-33: WARNING: Function for_each_available_child_of_node should have of_node_put() before goto. Early exits from for_each_available_child_of_node should decrement the node reference counter. Signed-off-by: Wan Jiabing <wanjiabing@vivo.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d9fd7e9fcc
commit
d1a7b9e469
@ -969,6 +969,7 @@ static int mscc_ocelot_init_ports(struct platform_device *pdev,
|
|||||||
target = ocelot_regmap_init(ocelot, res);
|
target = ocelot_regmap_init(ocelot, res);
|
||||||
if (IS_ERR(target)) {
|
if (IS_ERR(target)) {
|
||||||
err = PTR_ERR(target);
|
err = PTR_ERR(target);
|
||||||
|
of_node_put(portnp);
|
||||||
goto out_teardown;
|
goto out_teardown;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user