mirror of
https://github.com/torvalds/linux.git
synced 2026-07-29 02:31:27 +02:00
iio: accel: adxl355: replace usleep_range() with fsleep()
The "at least 5ms" wait after software reset has no specific upper bound. Use fsleep() with 5 * USEC_PER_MSEC to make the unit explicit at the call site. No functional change. Signed-off-by: Stepan Ionichev <sozdayvek@gmail.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
7e6a73eda9
commit
01b7517513
|
|
@ -349,7 +349,7 @@ static int adxl355_setup(struct adxl355_data *data)
|
|||
return ret;
|
||||
|
||||
/* Wait at least 5ms after software reset */
|
||||
usleep_range(5000, 10000);
|
||||
fsleep(5 * USEC_PER_MSEC);
|
||||
|
||||
/* Read shadow registers for comparison */
|
||||
ret = regmap_bulk_read(data->regmap,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user