summaryrefslogtreecommitdiff
path: root/board/eve
diff options
context:
space:
mode:
Diffstat (limited to 'board/eve')
-rw-r--r--board/eve/board.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/board/eve/board.c b/board/eve/board.c
index ca5b43d63c..d6b4d87c38 100644
--- a/board/eve/board.c
+++ b/board/eve/board.c
@@ -472,17 +472,6 @@ int board_set_active_charge_port(int charge_port)
{
enum bd9995x_charge_port bd9995x_port;
int bd9995x_port_select = 1;
- static int initialized;
-
- /*
- * Reject charge port disable if our battery is critical and we
- * have yet to initialize a charge port - continue to charge using
- * charger ROM / POR settings.
- */
- if (!initialized &&
- charge_port == CHARGE_PORT_NONE &&
- charge_get_percent() < 2)
- return -1;
switch (charge_port) {
case 0:
@@ -511,7 +500,6 @@ int board_set_active_charge_port(int charge_port)
}
CPRINTS("New chg p%d", charge_port);
- initialized = 1;
return bd9995x_select_input_port(bd9995x_port, bd9995x_port_select);
}