summaryrefslogtreecommitdiff
path: root/board/squawks/battery.c
diff options
context:
space:
mode:
authorShawn Nematbakhsh <shawnn@chromium.org>2015-05-15 12:00:42 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-05-16 03:00:16 +0000
commit0a71b4418da9d2c2b26f38e2f30c012bfc13bcd4 (patch)
tree545eb13033324ce69972634daeb4462fd65cf9dc /board/squawks/battery.c
parentb4cbe7d377c176835274efdbe2fd384aaa9dcdee (diff)
downloadchrome-ec-0a71b4418da9d2c2b26f38e2f30c012bfc13bcd4.tar.gz
cleanup: Use CONFIG_BATTERY_CUT_OFF for supported boards
Common battery cut-off host command / console command infrastructure already exists behind CONFIG_BATTERY_CUT_OFF, so add the config rather duplicating the code at the board level. BUG=chromium:488157 TEST=Manual on Squawks. Verify that both "cutoff" on the ec console and "ectool batterycutoff" succeed to cut-off the battery. BRANCH=None Change-Id: I159026d54924e058ea0262db04d8770c663ee613 Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/271513 Reviewed-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'board/squawks/battery.c')
-rw-r--r--board/squawks/battery.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/board/squawks/battery.c b/board/squawks/battery.c
index 7c8d140d5b..518bb48e9b 100644
--- a/board/squawks/battery.c
+++ b/board/squawks/battery.c
@@ -7,10 +7,6 @@
#include "battery.h"
#include "battery_smart.h"
-#include "console.h"
-#include "gpio.h"
-#include "host_command.h"
-#include "util.h"
/* Shutdown mode parameter to write to manufacturer access register */
#define SB_SHUTDOWN_DATA 0x0010
@@ -38,7 +34,7 @@ const struct battery_info *battery_get_info(void)
return &info;
}
-static int cutoff(void)
+int board_cut_off_battery(void)
{
int rv;
@@ -50,19 +46,3 @@ static int cutoff(void)
return sb_write(SB_MANUFACTURER_ACCESS, SB_SHUTDOWN_DATA);
}
-
-static int battery_command_cut_off(struct host_cmd_handler_args *args)
-{
- return cutoff() ? EC_RES_ERROR : EC_RES_SUCCESS;
-}
-DECLARE_HOST_COMMAND(EC_CMD_BATTERY_CUT_OFF, battery_command_cut_off,
- EC_VER_MASK(0));
-
-static int command_battcutoff(int argc, char **argv)
-{
- return cutoff();
-}
-DECLARE_CONSOLE_COMMAND(battcutoff, command_battcutoff,
- NULL,
- "Enable battery cutoff (ship mode)",
- NULL);