From: Stepan Ionichev Date: Sun, 10 May 2026 11:38:52 +0000 (+0500) Subject: iio: accel: adxl355: replace usleep_range() with fsleep() X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01b7517513e884ca2fa42852427ccb1ff6b849d7;p=thirdparty%2Fkernel%2Fstable.git 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 Reviewed-by: Andy Shevchenko Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/accel/adxl355_core.c b/drivers/iio/accel/adxl355_core.c index 03e5744d9667..89ac62ff4d04 100644 --- a/drivers/iio/accel/adxl355_core.c +++ b/drivers/iio/accel/adxl355_core.c @@ -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,