summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorarthur.lin <arthur.lin@lcfc.corp-partner.google.com>2021-04-28 10:56:10 +0800
committerCommit Bot <commit-bot@chromium.org>2021-04-28 05:13:31 +0000
commitb33d94e0a4ab48c82580eda38a62a93f108836f0 (patch)
treea498be9e05674c17bda0dd57b57097eaf09811da
parent55f1b0568a605768634b0ab81206e2f663d1cbd8 (diff)
downloadchrome-ec-b33d94e0a4ab48c82580eda38a62a93f108836f0.tar.gz
boten: don't disable charger adc in hibernate.
Fix AC not detect issue when charger in hibernate. BRANCH=dedede BUG=b:186552718 TEST=make buildall -j Signed-off-by: arthur.lin <arthur.lin@lcfc.corp-partner.google.com> Change-Id: I913c6c4b656a30e953b6e327a4e38574687f6230 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2853690 Reviewed-by: Aseda Aboagye <aaboagye@chromium.org> Commit-Queue: Aseda Aboagye <aaboagye@chromium.org>
-rw-r--r--board/boten/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/boten/board.c b/board/boten/board.c
index c69c014b8b..274dc4e521 100644
--- a/board/boten/board.c
+++ b/board/boten/board.c
@@ -123,7 +123,7 @@ void board_hibernate(void)
* Charger IC need to be put into their "low power mode" before
* entering the Z-state.
*/
- raa489000_hibernate(0, true);
+ raa489000_hibernate(0, false);
}
__override void board_pulse_entering_rw(void)