]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mdio: mux: fix device_node_continue.cocci warnings
authorJulia Lawall <julia.lawall@lip6.fr>
Fri, 12 May 2017 14:54:23 +0000 (22:54 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 15 May 2017 18:28:10 +0000 (14:28 -0400)
Device node iterators put the previous value of the index variable, so an
explicit put causes a double put.

In particular, of_mdiobus_register can fail before doing anything
interesting, so one could view it as a no-op from the reference count
point of view.

Generated by: scripts/coccinelle/iterators/device_node_continue.cocci

CC: Jon Mason <jon.mason@broadcom.com>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/mdio-mux.c

index 6943c5ece44aed2d5c43f9564c28034c269ae18c..599ce24c514f1b0eb1e8a6df1e3a0362f53bee26 100644 (file)
@@ -169,7 +169,6 @@ int mdio_mux_init(struct device *dev,
                if (r) {
                        mdiobus_free(cb->mii_bus);
                        devm_kfree(dev, cb);
-                       of_node_put(child_bus_node);
                } else {
                        cb->next = pb->children;
                        pb->children = cb;