summaryrefslogtreecommitdiff
path: root/thermal/thermal-helper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'thermal/thermal-helper.cpp')
-rw-r--r--thermal/thermal-helper.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/thermal/thermal-helper.cpp b/thermal/thermal-helper.cpp
index 3d7debe..6e8e1f9 100644
--- a/thermal/thermal-helper.cpp
+++ b/thermal/thermal-helper.cpp
@@ -250,11 +250,6 @@ bool ThermalHelper::readTemperature(
out->name = sensor_name;
out->currentValue = std::stoi(temp) * sensor_info.multiplier;
out->throttlingThreshold = getThresholdFromType(sensor_info.type, thresholds_);
- if (sensor_info.type == TemperatureType::SKIN) {
- out->throttlingThreshold = low_temp_threshold_adjuster_.adjustThreshold(
- out->throttlingThreshold, out->currentValue);
- }
-
out->shutdownThreshold = getThresholdFromType(
sensor_info.type, shutdown_thresholds_);
out->vrThrottlingThreshold = getThresholdFromType(
@@ -416,11 +411,6 @@ bool ThermalHelper::checkThrottlingData(
return false;
}
-bool ThermalHelper::fillBatteryThresholdDebugInfo(std::ostringstream& dump_buf)
-{
- return low_temp_threshold_adjuster_.fillBatteryThresholdDebugInfo(dump_buf);
-}
-
std::string ThermalHelper::getSkinSensorType() {
// The skin sensor is checked dynamically, since -evt uses quiet-therm-adc
// and -prod uses fps-therm-adc.