Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba7af625 authored by Tejinder Singh's avatar Tejinder Singh Committed by android-build-merger
Browse files

Merge "Pixel Thermal Throttling: fix throttling constants." into pi-dev

am: 3ebd957c

Change-Id: Icf02af585e14047754c2e212dd0f24066eb027cb
parents d7a976a5 3ebd957c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1208,7 +1208,10 @@ public class StatsCompanionService extends IStatsCompanionService.Stub {
    private static final class ThermalEventListener extends IThermalEventListener.Stub {
        @Override public void notifyThrottling(boolean isThrottling, Temperature temp) {
            StatsLog.write(StatsLog.THERMAL_THROTTLING, temp.getType(),
                    isThrottling ? 1 : 0, temp.getValue());
                    isThrottling ?
                            StatsLog.THERMAL_THROTTLING_STATE_CHANGED__STATE__START :
                            StatsLog.THERMAL_THROTTLING_STATE_CHANGED__STATE__STOP,
                    temp.getValue());
        }
    }
}