diff options
-rw-r--r-- | common/pmu_tps65090_charger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/pmu_tps65090_charger.c b/common/pmu_tps65090_charger.c index f8bb0cd441..e08e7c1bb2 100644 --- a/common/pmu_tps65090_charger.c +++ b/common/pmu_tps65090_charger.c @@ -76,7 +76,7 @@ static int battery_temperature_celsius(int t) static int battery_start_charging_range(int t) { t = battery_temperature_celsius(t); - return (t > 5 && t < 40); + return (t > 5 && t < 45); } static int battery_charging_range(int t) @@ -88,7 +88,7 @@ static int battery_charging_range(int t) static int battery_discharging_range(int t) { t = battery_temperature_celsius(t); - return (t < 70); + return (t < 100); } /* |