]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/commit
thermal: cpu_cooling: Remove usage of devm functions
authorVaishali Thakkar <vthakkar1994@gmail.com>
Wed, 19 Aug 2015 06:22:19 +0000 (11:52 +0530)
committerZhang Rui <rui.zhang@intel.com>
Sat, 10 Oct 2015 03:32:21 +0000 (11:32 +0800)
commita71544cd9373b879bbb40f55ce4d01556a4bc29e
treed6eb756f7fe2c4714c0f8ed9c6e61130f5dc584f
parent049e6dde7e57f0054fdc49102e7ef4830c698b46
thermal: cpu_cooling: Remove usage of devm functions

In the function cpufreq_get_requested_power, the memory allocated
for load_cpu is live within the function only. And after the
allocation it is immediately freed with devm_kfree. There is no
need to allocate memory for load_cpu with devm function so replace
devm_kcalloc with kcalloc and devm_kfree with kfree.

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Javi Merino <javi.merino@arm.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
drivers/thermal/cpu_cooling.c