battery: wait 500mS between steps for taper stepper

Currently the code only waits 100mS between steps. The hardware
could take longer to deglitch its signals and status. Extend the
wait to 500mS.

Change-Id: I4a037f85f43bc670c5a357e4ecb46962b0d33598
Signed-off-by: Abhijeet Dharmapurikar <adharmap@codeaurora.org>
This commit is contained in:
Abhijeet Dharmapurikar 2017-09-18 15:19:39 -07:00
parent 211e3cc27d
commit 54d690d396

View file

@ -291,7 +291,7 @@ static struct class_attribute pl_attributes[] = {
* TAPER *
************/
#define MINIMUM_PARALLEL_FCC_UA 500000
#define PL_TAPER_WORK_DELAY_MS 100
#define PL_TAPER_WORK_DELAY_MS 500
#define TAPER_RESIDUAL_PCT 75
static void pl_taper_work(struct work_struct *work)
{