diff options
author | Daniel Lezcano | 2022-04-22 16:10:28 +0200 |
---|---|---|
committer | Rafael J. Wysocki | 2022-04-22 16:47:40 +0200 |
commit | 5a42ac43d0c900ade2a5c0337b2ea52d994bdec8 (patch) | |
tree | 4f6579acd5ac34191e02783f10753d48e145ad55 /drivers/thermal | |
parent | b2d229d4ddb17db541098b83524d901257e93845 (diff) |
Revert "thermal/core: Deprecate changing cooling device state from userspace"
This reverts commit a67a46af4ad6342378e332b7420c1d1a2818c53f.
It has been reported the warning is annoying as the cooling device
state is still needed on some production system.
Meanwhile we provide a way to consolidate the thermal framework to
prevent multiple actors acting on the cooling devices with conflicting
decisions, let's revert this warning.
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/thermal_sysfs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/thermal/thermal_sysfs.c b/drivers/thermal/thermal_sysfs.c index f154bada2906..1c4aac8464a7 100644 --- a/drivers/thermal/thermal_sysfs.c +++ b/drivers/thermal/thermal_sysfs.c @@ -610,9 +610,6 @@ cur_state_store(struct device *dev, struct device_attribute *attr, unsigned long state; int result; - dev_warn_once(&cdev->device, - "Setting cooling device state is deprecated\n"); - if (sscanf(buf, "%ld\n", &state) != 1) return -EINVAL; |