summaryrefslogtreecommitdiff
path: root/common/charger.c
diff options
context:
space:
mode:
authorKeith Short <keithshort@chromium.org>2019-08-20 11:06:09 -0600
committerCommit Bot <commit-bot@chromium.org>2019-09-18 03:31:44 +0000
commite9b16dbda0f7ec027c30e17905c4a737cdad2e02 (patch)
treed62bfe3fad5b377cff9ab30e62d34b8575b28ce5 /common/charger.c
parent1af858387ff7ccdd656db77340fc81b3dc7e4453 (diff)
downloadchrome-ec-e9b16dbda0f7ec027c30e17905c4a737cdad2e02.tar.gz
config: Merge CONFIG_CHARGER_V2 into CONFIG_CHARGER
For all boards that defined CONFIG_CHARGER, CONFIG_CHARGER_V2 is also defined. Remove references to CONFIG_CHARGER_V2 from board header files. Replace CONFIG_CHARGER_V2 in common C modules with CONFIG_CHARGER when appropriate. BUG=b:139699769 BRANCH=none TEST=make buildall -j Change-Id: I6b54baf4ad2406bbed629b6b272dad9ea6a81280 Signed-off-by: Keith Short <keithshort@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1789420 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'common/charger.c')
-rw-r--r--common/charger.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/common/charger.c b/common/charger.c
index 2f3079d1b6..87d2f8e0ce 100644
--- a/common/charger.c
+++ b/common/charger.c
@@ -188,17 +188,13 @@ static int command_charger(int argc, char **argv)
d = strtoi(argv[2], &e, 0);
if (*e)
return EC_ERROR_PARAM2;
-#ifdef CONFIG_CHARGER_V2
chgstate_set_manual_current(d);
-#endif /* CONFIG_CHARGER_V2 */
return charger_set_current(d);
} else if (strcasecmp(argv[1], "voltage") == 0) {
d = strtoi(argv[2], &e, 0);
if (*e)
return EC_ERROR_PARAM2;
-#ifdef CONFIG_CHARGER_V2
chgstate_set_manual_voltage(d);
-#endif /* CONFIG_CHARGER_V2 */
return charger_set_voltage(d);
} else if (strcasecmp(argv[1], "dptf") == 0) {
d = strtoi(argv[2], &e, 0);