From 6e9cd48917874133933c235ed66b4aeebf8dcf07 Mon Sep 17 00:00:00 2001 From: Vic Yang Date: Fri, 11 Jul 2014 17:53:30 -0700 Subject: [PATCH] ryu: Lower battery charging voltage The design voltage is 4.35V and the current charging voltage, 4.4V, is too high. Let's lower this to 4.34V to meet the designed voltage. BUG=none BRANCH=none TEST=none Change-Id: Id5ab111d7ef390fe509adbb75112c78de1aab8a9 Signed-off-by: Vic Yang Reviewed-on: https://chromium-review.googlesource.com/207687 Reviewed-by: Vincent Palatin --- board/ryu/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/ryu/board.c b/board/ryu/board.c index 9d35c7bb10..c7048e777a 100644 --- a/board/ryu/board.c +++ b/board/ryu/board.c @@ -162,7 +162,7 @@ int extpower_is_present(void) /* Battery temperature ranges in degrees C */ static const struct battery_info info = { /* Design voltage */ - .voltage_max = 4400, + .voltage_max = 4350, .voltage_normal = 3800, .voltage_min = 2800, /* Pre-charge current: I <= 0.01C */