mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-12-12 08:50:12 +00:00
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:
|
||
|---|---|---|
| .. | ||
| aon_defs.h | ||
| Makefile | ||
| pm-arm.c | ||
| pm-mips.c | ||
| pm.h | ||
| s2-arm.S | ||
| s2-mips.S | ||
| s3-mips.S | ||