]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
MIPS: pci-rt3883: drop unneeded of_node_get
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 25 Oct 2015 21:24:25 +0000 (22:24 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Mon, 26 Oct 2015 10:02:50 +0000 (11:02 +0100)
commitd832393a6806cf14612ab549320c3a02dc6f1178
treedf31a4349589f858e5851a7c3316330059033f22
parent55f00de6e8d1915a90aec4182d70c44f05b6d952
MIPS: pci-rt3883: drop unneeded of_node_get

for_each_child_of_node performs an of_node_get on each iteration, so no
of_node_get is needed on breaking out of the loop when the device_node
structure is saved in another variable.

A simplified semantic match that finds this problem is as follows
(http://coccinelle.lip6.fr):

// <smpl>
@@
expression root;
local idexpression child;
@@

 for_each_child_of_node(root, child) {
   ...
*  of_node_get(child)
   ...
   break;
 }
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Cc: kernel-janitors@vger.kernel.org
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Andrew Lunn <andrew@lunn.ch>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Patchwork: https://patchwork.linux-mips.org/patch/11357/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/pci/pci-rt3883.c