summaryrefslogtreecommitdiff
path: root/common/charge_ramp.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/charge_ramp.c')
-rw-r--r--common/charge_ramp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/charge_ramp.c b/common/charge_ramp.c
index f6942d7516..c84e126140 100644
--- a/common/charge_ramp.c
+++ b/common/charge_ramp.c
@@ -29,7 +29,6 @@
/* Current ramp increment */
#define RAMP_CURR_INCR_MA 64
#define RAMP_CURR_DELAY (500*MSEC)
-#define RAMP_CURR_START_MA 500
/* How much to backoff the input current limit when limit has been found */
#define RAMP_ICL_BACKOFF (2*RAMP_CURR_INCR_MA)
@@ -102,7 +101,8 @@ void chg_ramp_charge_supplier_change(int port, int supplier, int current,
/* Set min and max input current limit based on if ramp is allowed */
if (board_is_ramp_allowed(active_sup)) {
- min_icl = RAMP_CURR_START_MA;
+ min_icl = charge_manager_get_ramp_start_current(active_port,
+ active_sup);
max_icl = board_get_ramp_current_limit(active_sup, current);
} else {
min_icl = max_icl = current;