Commit d0b32fa1 authored by Lee Jones's avatar Lee Jones

mfd: ab8500-gpadc: Change to usleep_range() for greater resolution

The resolution of msleep is related to HZ, so with HZ set to
100 any msleep of less than 10ms will become ~10ms.
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 5a4bac6e
...@@ -344,7 +344,7 @@ int ab8500_gpadc_read_raw(struct ab8500_gpadc *gpadc, u8 channel) ...@@ -344,7 +344,7 @@ int ab8500_gpadc_read_raw(struct ab8500_gpadc *gpadc, u8 channel)
* Delay might be needed for ABB8500 cut 3.0, if not, remove * Delay might be needed for ABB8500 cut 3.0, if not, remove
* when hardware will be available * when hardware will be available
*/ */
msleep(1); usleep_range(1000, 1000);
break; break;
} }
/* Intentional fallthrough */ /* Intentional fallthrough */
......
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