diff options
author | Daniel Lezcano <daniel.lezcano@linaro.org> | 2022-04-22 16:10:29 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2022-04-22 16:47:40 +0200 |
commit | fa1ef24ae251f7916e70b6fac94c7db3bb837426 (patch) | |
tree | e2fc1b7b107072a00e95f18ecd939fe390cf36ab /drivers/thermal/gov_user_space.c | |
parent | Revert "thermal/core: Deprecate changing cooling device state from userspace" (diff) | |
download | linux-fa1ef24ae251f7916e70b6fac94c7db3bb837426.tar.xz linux-fa1ef24ae251f7916e70b6fac94c7db3bb837426.zip |
thermal/governor: Remove deprecated information
The userspace governor is still in use on production systems and the
deprecating warning is scary.
Even if we want to get rid of the userspace governor, it is too soon
yet as the alternatives are not yet adopted.
Change the deprecated warning by an information message suggesting to
switch to the netlink thermal events.
Fixes: 0275c9fb0eff ("thermal/core: Make the userspace governor deprecated")
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/gov_user_space.c')
-rw-r--r-- | drivers/thermal/gov_user_space.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/thermal/gov_user_space.c b/drivers/thermal/gov_user_space.c index 64a18e354a20..a62a4e90bd3f 100644 --- a/drivers/thermal/gov_user_space.c +++ b/drivers/thermal/gov_user_space.c @@ -17,8 +17,7 @@ static int user_space_bind(struct thermal_zone_device *tz) { - pr_warn_once("Userspace governor deprecated: use thermal netlink " \ - "notification instead\n"); + pr_info_once("Consider using thermal netlink events interface\n"); return 0; } |