diff --git a/board/grunt/board.c b/board/grunt/board.c index 9c26df0e4a..e522751ea1 100644 --- a/board/grunt/board.c +++ b/board/grunt/board.c @@ -458,14 +458,6 @@ int board_set_active_charge_port(int port) void board_set_charge_limit(int port, int supplier, int charge_ma, int max_ma, int charge_mv) { - /* TODO(ecgh): check limits */ - /* - * To protect the charge inductor, at voltages above 18V we should - * set the current limit to 2.7A. - */ - if (charge_mv > 18000) - charge_ma = MIN(2700, charge_ma); - charge_set_input_current_limit(MAX(charge_ma, CONFIG_CHARGER_INPUT_CURRENT), charge_mv);