summaryrefslogtreecommitdiff
path: root/zephyr/program/rex
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/program/rex')
-rw-r--r--zephyr/program/rex/prj.conf1
-rw-r--r--zephyr/program/rex/src/usbc_config.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/zephyr/program/rex/prj.conf b/zephyr/program/rex/prj.conf
index e5900afd54..8b99cc373c 100644
--- a/zephyr/program/rex/prj.conf
+++ b/zephyr/program/rex/prj.conf
@@ -77,6 +77,7 @@ CONFIG_PLATFORM_EC_CHARGER_SENSE_RESISTOR=5
CONFIG_PLATFORM_EC_CHARGER_SENSE_RESISTOR_AC=10
CONFIG_PLATFORM_EC_CHARGER_MIN_POWER_MW_FOR_POWER_ON=30000
CONFIG_PLATFORM_EC_CHARGER_MIN_POWER_MW_FOR_POWER_ON_WITH_BATT=15000
+CONFIG_PLATFORM_EC_CHARGER_MIN_INPUT_CURRENT_LIMIT=512
# USBC
CONFIG_PLATFORM_EC_USBC_PPC=y
diff --git a/zephyr/program/rex/src/usbc_config.c b/zephyr/program/rex/src/usbc_config.c
index 6f09887eed..ed51be6160 100644
--- a/zephyr/program/rex/src/usbc_config.c
+++ b/zephyr/program/rex/src/usbc_config.c
@@ -195,8 +195,7 @@ void bc12_interrupt(enum gpio_signal signal)
void board_set_charge_limit(int port, int supplier, int charge_ma, int max_ma,
int charge_mv)
{
- charge_set_input_current_limit(
- MAX(charge_ma, CONFIG_CHARGER_INPUT_CURRENT), charge_mv);
+ charge_set_input_current_limit(charge_ma, charge_mv);
}
static void board_disable_charger_ports(void)