summaryrefslogtreecommitdiff
path: root/drivers/thermal/int340x_thermal/int340x_thermal_zone.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/thermal/int340x_thermal/int340x_thermal_zone.h')
-rw-r--r--drivers/thermal/int340x_thermal/int340x_thermal_zone.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/thermal/int340x_thermal/int340x_thermal_zone.h b/drivers/thermal/int340x_thermal/int340x_thermal_zone.h
index 65116b1f19f1..5f3ba4775c5c 100644
--- a/drivers/thermal/int340x_thermal/int340x_thermal_zone.h
+++ b/drivers/thermal/int340x_thermal/int340x_thermal_zone.h
@@ -46,6 +46,7 @@ struct int34x_thermal_zone {
struct int34x_thermal_zone *int340x_thermal_zone_add(struct acpi_device *,
struct thermal_zone_device_ops *override_ops);
void int340x_thermal_zone_remove(struct int34x_thermal_zone *);
+int int340x_thermal_read_trips(struct int34x_thermal_zone *int34x_zone);
static inline void int340x_thermal_zone_set_priv_data(
struct int34x_thermal_zone *tzone, void *priv_data)
@@ -60,9 +61,10 @@ static inline void *int340x_thermal_zone_get_priv_data(
}
static inline void int340x_thermal_zone_device_update(
- struct int34x_thermal_zone *tzone)
+ struct int34x_thermal_zone *tzone,
+ enum thermal_notify_event event)
{
- thermal_zone_device_update(tzone->zone, THERMAL_EVENT_UNSPECIFIED);
+ thermal_zone_device_update(tzone->zone, event);
}
#endif