cpufreq: ti: Implement scope-based cleanup in ti_cpufreq_match_node()
authorShivani Gupta <shivani07g@gmail.com>
Tue, 23 Apr 2024 02:07:27 +0000 (02:07 +0000)
committerViresh Kumar <viresh.kumar@linaro.org>
Tue, 23 Apr 2024 07:21:46 +0000 (12:51 +0530)
commitd769eaef2a8d668035e34a19e3282b4222d6e782
treeb3241c63c9146493340960ee961a4b0b5c112480
parentb69ec356db1a7c4703b1a9edc82ee1dfdd296b97
cpufreq: ti: Implement scope-based cleanup in ti_cpufreq_match_node()

Modify the ti_cpufreq_match_node() function to utilize the __free()
cleanup handler for automatically releasing the device node when it goes
out of scope.

By moving the declaration to the initialization, the patch ensures that
the device node is properly managed throughout the function's scope,
thus eliminating the need for manual invocation of of_node_put().
This approach reduces the potential for memory leaks.

Suggested-by: Julia Lawall <julia.lawall@inria.fr>
Signed-off-by: Shivani Gupta <shivani07g@gmail.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/cpufreq/ti-cpufreq.c