Commit 18e2452a authored by Nicholas Mc Guire's avatar Nicholas Mc Guire Committed by Jonathan Cameron

iio: health: max30100: use msleep() for long uncritical delays

ulseep_range() uses hrtimers and provides no advantage over msleep()
for larger delays. Fix up the 35ms delays here to use msleep() and
reduce the load on the hrtimer subsystem.

Fixes: commit 4d33615d ("iio: light: add MAX30100 oximeter driver support")
Link: http://lkml.org/lkml/2017/1/11/377Signed-off-by: default avatarNicholas Mc Guire <hofrat@osadl.org>
Reviewed-by: default avatarMatt Ranostay <matt.ranostay@konsulko.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent ac2bec9d
...@@ -378,7 +378,7 @@ static int max30100_get_temp(struct max30100_data *data, int *val) ...@@ -378,7 +378,7 @@ static int max30100_get_temp(struct max30100_data *data, int *val)
if (ret) if (ret)
return ret; return ret;
usleep_range(35000, 50000); msleep(35);
return max30100_read_temp(data, val); return max30100_read_temp(data, val);
} }
......
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