]> git.itanic.dy.fi Git - linux-stable/commit
soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe
authorMiaoqian Lin <linmq006@gmail.com>
Thu, 26 May 2022 07:53:22 +0000 (11:53 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 2 Jul 2022 14:27:37 +0000 (16:27 +0200)
commit4f5877bdf7b593e988f1924f4c3df6523f80b39c
tree90e19029c95a1ad6ec35882c15d0fc82c9c14247
parent7571bcecf01b69f0d3ec60ca41ce5d4c75411a4a
soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe

commit 37d838de369b07b596c19ff3662bf0293fdb09ee upstream.

of_find_matching_node() returns a node pointer with refcount
incremented, we should use of_node_put() on it when not need anymore.
Add missing of_node_put() to avoid refcount leak.

In brcmstb_init_sram, it pass dn to of_address_to_resource(),
of_address_to_resource() will call of_find_device_by_node() to take
reference, so we should release the reference returned by
of_find_matching_node().

Fixes: 0b741b8234c8 ("soc: bcm: brcmstb: Add support for S2/S3/S5 suspend states (ARM)")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/soc/bcm/brcmstb/pm/pm-arm.c