diff options
author | Simon Glass <sjg@chromium.org> | 2023-05-08 15:33:31 -0600 |
---|---|---|
committer | Chromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-05-11 14:04:30 +0000 |
commit | b729eab7c75553c830b54be5da7a348127f0b49c (patch) | |
tree | db654291e97be430144d4bcad27e4f04db9f87f7 /board/corori | |
parent | c1b39d008cf6aa8ed53780c5b4ff1bd55951d1b4 (diff) | |
download | chrome-ec-b729eab7c75553c830b54be5da7a348127f0b49c.tar.gz |
charger: Move charger_state_v2.h into charge_state.h
We don't have a v1 anymore, so the name makes no sense. Move it into
the existing file.
Include charge_state.h instead of v2, doing this in the same change to
avoid build errors.
This makes no functional change.
BUG=b:218332694
TEST=make buildall
Change-Id: Ic3e3adc45e4d002c2cd5ba8aa65e24686e01d628
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4516191
Reviewed-by: Tim Van Patten <timvp@google.com>
Commit-Queue: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Yuval Peress <peress@google.com>
Diffstat (limited to 'board/corori')
-rw-r--r-- | board/corori/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/corori/board.c b/board/corori/board.c index 545765b0d7..0717b73750 100644 --- a/board/corori/board.c +++ b/board/corori/board.c @@ -10,7 +10,7 @@ #include "cbi_fw_config.h" #include "cbi_ssfc.h" #include "charge_manager.h" -#include "charge_state_v2.h" +#include "charge_state.h" #include "charger.h" #include "chipset.h" #include "common.h" |