diff options
author | Lukasz Luba <lukasz.luba@arm.com> | 2021-11-09 22:57:14 +0300 |
---|---|---|
committer | Viresh Kumar <viresh.kumar@linaro.org> | 2021-11-23 12:40:26 +0300 |
commit | 7e97b3dc2556743dd02612c92a8de7026e8d7dc9 (patch) | |
tree | e3eb4ab081ec776552357d9a48b5f8033d87cf77 /include/linux/arch_topology.h | |
parent | 0258cb19c77deb755747b97f690931193ced0c55 (diff) | |
download | linux-7e97b3dc2556743dd02612c92a8de7026e8d7dc9.tar.xz |
arch_topology: Remove unused topology_set_thermal_pressure() and related
There is no need of this function (and related) since code has been
converted to use the new arch_update_thermal_pressure() API. The old
code can be removed.
Signed-off-by: Lukasz Luba <lukasz.luba@arm.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Diffstat (limited to 'include/linux/arch_topology.h')
-rw-r--r-- | include/linux/arch_topology.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/arch_topology.h b/include/linux/arch_topology.h index ace1e5dcf773..cce6136b300a 100644 --- a/include/linux/arch_topology.h +++ b/include/linux/arch_topology.h @@ -56,9 +56,6 @@ static inline unsigned long topology_get_thermal_pressure(int cpu) return per_cpu(thermal_pressure, cpu); } -void topology_set_thermal_pressure(const struct cpumask *cpus, - unsigned long th_pressure); - void topology_update_thermal_pressure(const struct cpumask *cpus, unsigned long capped_freq); |