UPSTREAM: clk: Fix memory leak in devm_clk_notifier_register()
devm_clk_notifier_register() allocates a devres resource for clk notifier but didn't register that to the device, so the notifier didn't get unregistered on device detach and the allocated resource was leaked. Fix the issue by registering the resource through devres_add(). This issue was found with kmemleak on a Chromebook. Bug: 254441685 Fixes: 6d30d50d ("clk: add devm variant of clk_notifier_register") Signed-off-by:Fei Shao <fshao@chromium.org> Link: https://lore.kernel.org/r/20230619112253.v2.1.I13f060c10549ef181603e921291bdea95f83033c@changeid Reviewed-by:
Dan Carpenter <dan.carpenter@linaro.org> Signed-off-by:
Stephen Boyd <sboyd@kernel.org> (cherry picked from commit 7fb933e5) Signed-off-by:
Lee Jones <joneslee@google.com> Change-Id: If7f84e9d2551dd5876deb867c807499138a2716c
Loading