summaryrefslogtreecommitdiff
path: root/board/puff/board.c
diff options
context:
space:
mode:
authorPeter Marheine <pmarheine@chromium.org>2019-12-19 11:37:39 -0800
committerCommit Bot <commit-bot@chromium.org>2020-01-07 03:33:48 +0000
commitfa18c654e2f39e373f5e209ac9751082e4ae56a1 (patch)
treef4ba6eebdaae5fdcb0b1f13d6bb555f551344466 /board/puff/board.c
parent9ba4e7abf779f8309cb96e67348861336ca7c4cc (diff)
downloadchrome-ec-fa18c654e2f39e373f5e209ac9751082e4ae56a1.tar.gz
puff: enable EFS
Configs mostly copied from fizz. TEST=booted on hardware, observed successful jump to RW. BRANCH=none BUG=b:146504182 Change-Id: Icf2925b92fea848efcd705bb5274d1afc91d2513 Signed-off-by: Peter Marheine <pmarheine@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1977079 Reviewed-by: Andrew McRae <amcrae@chromium.org> Commit-Queue: Andrew McRae <amcrae@chromium.org>
Diffstat (limited to 'board/puff/board.c')
-rw-r--r--board/puff/board.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/board/puff/board.c b/board/puff/board.c
index 80ebedf7c2..3a846736a5 100644
--- a/board/puff/board.c
+++ b/board/puff/board.c
@@ -510,3 +510,8 @@ void board_overcurrent_event(int port, int is_overcurrented)
return;
usbc_overcurrent = is_overcurrented;
}
+
+enum battery_present battery_is_present(void)
+{
+ return BP_NO;
+}