summaryrefslogtreecommitdiff
path: root/include/thermal.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/thermal.h')
-rw-r--r--include/thermal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/thermal.h b/include/thermal.h
index a2c26d9d4d..ab606baaa8 100644
--- a/include/thermal.h
+++ b/include/thermal.h
@@ -8,6 +8,7 @@
#ifndef __CROS_EC_THERMAL_H
#define __CROS_EC_THERMAL_H
+#include "temp_sensor.h"
#include "util.h"
#define THERMAL_CONFIG_NO_FLAG 0x0
@@ -46,10 +47,10 @@ struct thermal_config_t {
};
/* Set the threshold temperature value. Return -1 on error. */
-int thermal_set_threshold(int sensor_id, int threshold_id, int value);
+int thermal_set_threshold(enum temp_sensor_type type, int threshold_id, int value);
/* Get the threshold temperature value. Return -1 on error. */
-int thermal_get_threshold(int sensor_id, int threshold_id);
+int thermal_get_threshold(enum temp_sensor_type type, int threshold_id);
/* Toggle automatic fan speed control. Return -1 on error. */
int thermal_toggle_auto_fan_ctrl(int auto_fan_on);