Commit 9a0bd070 authored by Jonas Aaberg's avatar Jonas Aaberg Committed by Anton Vorontsov

ab8500_fg: Replace msleep() with usleep_range() for greater accuracy

Doing so provides a greater degree of accuracy when dealing with
time-frames between 1us and 20ms. msleep() is only accurate for
wake-ups greater than 20ms.
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarJonas ABERG <jonas.aberg@stericsson.com>
Reviewed-by: default avatarJohan BJORNSTEDT <johan.bjornstedt@stericsson.com>
Signed-off-by: default avatarAnton Vorontsov <anton@enomsg.org>
parent b269fff4
......@@ -956,7 +956,7 @@ static int ab8500_fg_load_comp_volt_to_capacity(struct ab8500_fg *di)
do {
vbat += ab8500_fg_bat_voltage(di);
i++;
msleep(5);
usleep_range(5000, 6000);
} while (!ab8500_fg_inst_curr_done(di));
ab8500_fg_inst_curr_finalize(di, &di->inst_curr);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment