Pit: Change the temperature range in discharging state.

Samsung change the temperature range in battery discharing state from (0
<=temp < 100) to (-20 <= temp < 70) from this year. That's why we have to
change the battery_temperature_range structure value as soon as possible
so that our reliability team check the battery.

BUG=chrome-os-partner:25731
TEST=Boot on the pit / pi and then check the battery is working or
not in the oven.
BRANCH=pit

Change-Id: I3289d22176af043e80a881f1626da386e823d857
Signed-off-by: Jaehoon Kim <jh228.kim@samsung.com>
Reviewed-on: https://chromium-review.googlesource.com/186040
Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
Jaehoon Kim
2014-02-12 10:57:42 +09:00
committed by chrome-internal-fetch
parent d3facbd92f
commit 7aa3258ae7

View File

@@ -103,8 +103,8 @@ static const struct battery_info info = {
.start_charging_max_c = 45,
.charging_min_c = 0,
.charging_max_c = 60,
.discharging_min_c = 0,
.discharging_max_c = 100,
.discharging_min_c = -20,
.discharging_max_c = 70,
};
const struct battery_info *battery_get_info(void)