summaryrefslogtreecommitdiffstats
path: root/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
diff options
context:
space:
mode:
authorBragatheswaran Manickavel <bragathemanick0908@gmail.com>2023-10-27 11:44:10 +0200
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2023-11-16 20:10:28 +0100
commitc788b9e56acd46f3a07d0fad6fc3f543c3557d2c (patch)
tree81422047da3f77081a719624ea1e848ebe861148 /drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
parentiio: temperature: Add MCP9600 thermocouple EMF converter (diff)
downloadlinux-c788b9e56acd46f3a07d0fad6fc3f543c3557d2c.tar.xz
linux-c788b9e56acd46f3a07d0fad6fc3f543c3557d2c.zip
iio/imu: inv_icm42600: Use max() helper macros
Use the standard max() helper macros instead of direct variable comparison using if/else blocks or ternary operator. Change identified using minmax.cocci Coccinelle semantic patch. Signed-off-by: Bragatheswaran Manickavel <bragathemanick0908@gmail.com> Acked-by: Jean-Baptiste Maneyrol <jean-baptiste.maneyrol@tdk.com> Link: https://lore.kernel.org/r/20231027094410.3706-1-bragathemanick0908@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c')
-rw-r--r--drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c b/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
index 6ef1df9d60b7..b52f328fd26c 100644
--- a/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
+++ b/drivers/iio/imu/inv_icm42600/inv_icm42600_buffer.c
@@ -424,10 +424,7 @@ out_unlock:
mutex_unlock(&st->lock);
/* sleep maximum required time */
- if (sleep_sensor > sleep_temp)
- sleep = sleep_sensor;
- else
- sleep = sleep_temp;
+ sleep = max(sleep_sensor, sleep_temp);
if (sleep)
msleep(sleep);