[G/Unstable/OEM-5.10] [PATCH 5/7] thermal/core: Remove notify ops
Kai-Heng Feng
kai.heng.feng at canonical.com
Thu Jan 21 08:49:00 UTC 2021
From: Daniel Lezcano <daniel.lezcano at linaro.org>
BugLink: https://bugs.launchpad.net/bugs/1906168
With the removal of the notifys user in a previous patches, the ops is no
longer needed, remove it.
Signed-off-by: Daniel Lezcano <daniel.lezcano at linaro.org>
Reviewed-by: Lukasz Luba <lukasz.luba at arm.com>
Link: https://lore.kernel.org/r/20201210121514.25760-5-daniel.lezcano@linaro.org
(cherry picked from commit 04f111130e9afa41c10d7bcec14e00e3be8b6977 linux-next)
Signed-off-by: Kai-Heng Feng <kai.heng.feng at canonical.com>
---
drivers/thermal/thermal_core.c | 3 ---
include/linux/thermal.h | 2 --
2 files changed, 5 deletions(-)
diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c
index aba84e1a4396..b53305b8d643 100644
--- a/drivers/thermal/thermal_core.c
+++ b/drivers/thermal/thermal_core.c
@@ -401,9 +401,6 @@ static void handle_critical_trips(struct thermal_zone_device *tz,
trace_thermal_zone_trip(tz, trip, trip_type);
- if (tz->ops->notify)
- tz->ops->notify(tz, trip, trip_type);
-
if (trip_type == THERMAL_TRIP_HOT && tz->ops->hot)
tz->ops->hot(tz);
else if (trip_type == THERMAL_TRIP_CRITICAL)
diff --git a/include/linux/thermal.h b/include/linux/thermal.h
index e7989cec090a..5777a9e4ea54 100644
--- a/include/linux/thermal.h
+++ b/include/linux/thermal.h
@@ -90,8 +90,6 @@ struct thermal_zone_device_ops {
int (*set_emul_temp) (struct thermal_zone_device *, int);
int (*get_trend) (struct thermal_zone_device *, int,
enum thermal_trend *);
- int (*notify) (struct thermal_zone_device *, int,
- enum thermal_trip_type);
void (*hot)(struct thermal_zone_device *);
void (*critical)(struct thermal_zone_device *);
};
--
2.29.2
More information about the kernel-team
mailing list