]> git.itanic.dy.fi Git - linux-stable/commit
MIPS: generic: fix missing of_node_put()
authorNicholas Mc Guire <hofrat@osadl.org>
Wed, 11 Jul 2018 18:32:45 +0000 (20:32 +0200)
committerPaul Burton <paul.burton@mips.com>
Sat, 28 Jul 2018 02:48:57 +0000 (19:48 -0700)
commit28ec2238f37e72a3a40a7eb46893e7651bcc40a6
treea615a6e2b8ee07be7e4e2a7d1e1b2d38f57a849b
parentb1259519e618d479ede8a0db5474b3aff99f5056
MIPS: generic: fix missing of_node_put()

of_find_compatible_node() returns a device_node pointer with refcount
incremented and must be decremented explicitly.
 As this code is using the result only to check presence of the interrupt
controller (!NULL) but not actually using the result otherwise the
refcount can be decremented here immediately again.

Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
Signed-off-by: Paul Burton <paul.burton@mips.com>
Patchwork: https://patchwork.linux-mips.org/patch/19820/
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: James Hogan <jhogan@kernel.org>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
arch/mips/generic/init.c