summaryrefslogtreecommitdiff
path: root/board/beetley/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/beetley/board.c')
-rw-r--r--board/beetley/board.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/board/beetley/board.c b/board/beetley/board.c
index f6b1f1008c..89a1d6b13f 100644
--- a/board/beetley/board.c
+++ b/board/beetley/board.c
@@ -384,19 +384,6 @@ uint16_t tcpc_get_alert_status(void)
return status;
}
-void board_set_charge_limit(int port, int supplier, int charge_ma, int max_ma,
- int charge_mv)
-{
- int icl = MAX(charge_ma, CONFIG_CHARGER_INPUT_CURRENT);
-
- /*
- * b/147463641: The charger IC seems to overdraw ~4%, therefore we
- * reduce our target accordingly.
- */
- icl = icl * 96 / 100;
- charge_set_input_current_limit(icl, charge_mv);
-}
-
__override void typec_set_source_current_limit(int port, enum tcpc_rp_value rp)
{
if (port < 0 || port > board_get_usb_pd_port_count())