summaryrefslogtreecommitdiff
path: root/board/strago/battery.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/strago/battery.c')
-rw-r--r--board/strago/battery.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/board/strago/battery.c b/board/strago/battery.c
index 064f630f82..43fa956ced 100644
--- a/board/strago/battery.c
+++ b/board/strago/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
@@ -33,7 +29,7 @@ const struct battery_info *battery_get_info(void)
return &info;
}
-static int cutoff(void)
+int board_cut_off_battery(void)
{
int rv;
@@ -45,19 +41,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);