]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
thermal/drivers/cpu_cooling: Rename to cpufreq_cooling
authorDaniel Lezcano <daniel.lezcano@linaro.org>
Thu, 19 Dec 2019 22:53:17 +0000 (23:53 +0100)
committerDaniel Lezcano <daniel.lezcano@linaro.org>
Mon, 27 Jan 2020 09:24:32 +0000 (10:24 +0100)
As we introduced the idle injection cooling device called
cpuidle_cooling, let's be consistent and rename the cpu_cooling to
cpufreq_cooling as this one mitigates with OPPs changes.

Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org>
Link: https://lore.kernel.org/r/20191219225317.17158-3-daniel.lezcano@linaro.org
Documentation/driver-api/thermal/exynos_thermal.rst
MAINTAINERS
drivers/thermal/Makefile
drivers/thermal/clock_cooling.c
drivers/thermal/cpufreq_cooling.c [moved from drivers/thermal/cpu_cooling.c with 99% similarity]
include/linux/clock_cooling.h

index 5bd556566c705d82748028958e6b4c819d73c570..d4e4a5b758053e782f2d1a8997f4a69a47bd881b 100644 (file)
@@ -67,7 +67,7 @@ TMU driver description:
 The exynos thermal driver is structured as::
 
                                        Kernel Core thermal framework
-                               (thermal_core.c, step_wise.c, cpu_cooling.c)
+                               (thermal_core.c, step_wise.c, cpufreq_cooling.c)
                                                                ^
                                                                |
                                                                |
index fd45bd0ec68e8c3d79992e8837aca50d09f1d9ee..08ebdc7071d7af3d65b43d9d8555cba6be1b3747 100644 (file)
@@ -16349,7 +16349,7 @@ L:      linux-pm@vger.kernel.org
 S:     Supported
 F:     Documentation/driver-api/thermal/cpu-cooling-api.rst
 F:     Documentation/driver-api/thermal/cpu-idle-cooling.rst
-F:     drivers/thermal/cpu_cooling.c
+F:     drivers/thermal/cpufreq_cooling.c
 F:     drivers/thermal/cpuidle_cooling.c
 F:     include/linux/cpu_cooling.h
 
index 6929e6fad1ace978de41e9744fb5cb7390183f7b..d502a597a717429979ec9182400d0535e2db4829 100644 (file)
@@ -19,7 +19,7 @@ thermal_sys-$(CONFIG_THERMAL_GOV_USER_SPACE)  += user_space.o
 thermal_sys-$(CONFIG_THERMAL_GOV_POWER_ALLOCATOR)      += power_allocator.o
 
 # cpufreq cooling
-thermal_sys-$(CONFIG_CPU_FREQ_THERMAL) += cpu_cooling.o
+thermal_sys-$(CONFIG_CPU_FREQ_THERMAL) += cpufreq_cooling.o
 thermal_sys-$(CONFIG_CPU_IDLE_THERMAL) += cpuidle_cooling.o
 
 # clock cooling
index 3ad3256c48fd8fa4d6802ed1a7ed7e4fa6f8d2dd..7cb3ae4b44ee7054e1bf40ecd94695846e4ecc8e 100644 (file)
@@ -7,7 +7,7 @@
  *  Copyright (C) 2013 Texas Instruments Inc.
  *  Contact:  Eduardo Valentin <eduardo.valentin@ti.com>
  *
- *  Highly based on cpu_cooling.c.
+ *  Highly based on cpufreq_cooling.c.
  *  Copyright (C) 2012 Samsung Electronics Co., Ltd(http://www.samsung.com)
  *  Copyright (C) 2012  Amit Daniel <amit.kachhap@linaro.org>
  */
similarity index 99%
rename from drivers/thermal/cpu_cooling.c
rename to drivers/thermal/cpufreq_cooling.c
index 53dd08f238d5911df43c99e2d1063dd61b68a91e..fe83d7a210d478b54c9ab71df1bbd88d2c8fb6f1 100644 (file)
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0
 /*
- *  linux/drivers/thermal/cpu_cooling.c
+ *  linux/drivers/thermal/cpufreq_cooling.c
  *
  *  Copyright (C) 2012 Samsung Electronics Co., Ltd(http://www.samsung.com)
  *
@@ -621,7 +621,7 @@ of_cpufreq_cooling_register(struct cpufreq_policy *policy)
        struct thermal_cooling_device *cdev = NULL;
 
        if (!np) {
-               pr_err("cpu_cooling: OF node not available for cpu%d\n",
+               pr_err("cpufreq_cooling: OF node not available for cpu%d\n",
                       policy->cpu);
                return NULL;
        }
@@ -631,7 +631,7 @@ of_cpufreq_cooling_register(struct cpufreq_policy *policy)
 
                cdev = __cpufreq_cooling_register(np, policy, em);
                if (IS_ERR(cdev)) {
-                       pr_err("cpu_cooling: cpu%d failed to register as cooling device: %ld\n",
+                       pr_err("cpufreq_cooling: cpu%d failed to register as cooling device: %ld\n",
                               policy->cpu, PTR_ERR(cdev));
                        cdev = NULL;
                }
index b5cebf766e02e774f58435116d544471054bb465..4b0a69863656cb840fbc387bf78a2e175ab06835 100644 (file)
@@ -7,7 +7,7 @@
  *  Copyright (C) 2013 Texas Instruments Inc.
  *  Contact:  Eduardo Valentin <eduardo.valentin@ti.com>
  *
- *  Highly based on cpu_cooling.c.
+ *  Highly based on cpufreq_cooling.c.
  *  Copyright (C) 2012 Samsung Electronics Co., Ltd(http://www.samsung.com)
  *  Copyright (C) 2012  Amit Daniel <amit.kachhap@linaro.org>
  */