]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commit
soc: amlogic: meson-gx-socinfo: Add of_node_put() before return
authorNishka Dasgupta <nishkadg.linux@gmail.com>
Mon, 19 Aug 2019 07:27:06 +0000 (12:57 +0530)
committerKevin Hilman <khilman@baylibre.com>
Tue, 20 Aug 2019 21:53:33 +0000 (14:53 -0700)
commit49ed86f503be80aac158a567c4cfd31cf1cd181e
tree2c9c2f68ac5afd2e729703bbe81b91e0eeb0e636
parent623699711a39134a2b2cd6bdba81c5167deceec8
soc: amlogic: meson-gx-socinfo: Add of_node_put() before return

The variable np in function meson_gx_socinfo_init takes the return value
of of_find_compatible_node, which gets a node but does not put it. If
this node is not put it may cause a memory leak. Hence put np after its
usefulness has been exhausted.
Issue found with Coccinelle.

Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com>
Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>
Fixes: a9daaba2965e ("soc: Add Amlogic SoC Information driver")
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
drivers/soc/amlogic/meson-gx-socinfo.c