]> git.baikalelectronics.ru Git - kernel.git/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>
Wed, 29 Jun 2022 07:03:31 +0000 (09:03 +0200)
commitf8429ca8d81413c6fb98533266b6538138f0b603
tree471f5b24cf05d75bcf5f54adf159d9651d268cd6
parentecccbdfc430790268e8fc1c2d821d96d786706b4
soc: bcm: brcmstb: pm: pm-arm: Fix refcount leak in brcmstb_pm_probe

commit adc8283d9406502bd214b58fe40b41039152f775 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: 275e9baf1087 ("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