From: Andy Shevchenko Date: Sun, 9 Nov 2025 19:24:36 +0000 (+0100) Subject: iio: imu: inv_icm42600: Convert to uXX and sXX integer types X-Git-Tag: v7.1-rc1~17^2~120^2~110 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=7affc01b317819eb426f6c0aa2fd98be73080b75;p=thirdparty%2Fkernel%2Flinux.git iio: imu: inv_icm42600: Convert to uXX and sXX integer types The driver has a some use of intXX_t and uintXX_t types which is not the pattern we use in the IIO subsystem. Switch the driver to use kernel internal types for that. No functional changes. Signed-off-by: Andy Shevchenko Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/imu/inv_icm42600/inv_icm42600_accel.c b/drivers/iio/imu/inv_icm42600/inv_icm42600_accel.c index 54760d8f92a27..9be5ade245012 100644 --- a/drivers/iio/imu/inv_icm42600/inv_icm42600_accel.c +++ b/drivers/iio/imu/inv_icm42600/inv_icm42600_accel.c @@ -1209,7 +1209,7 @@ int inv_icm42600_accel_parse_fifo(struct iio_dev *indio_dev) ssize_t i, size; unsigned int no; const void *accel, *gyro, *timestamp; - const int8_t *temp; + const s8 *temp; unsigned int odr; int64_t ts_val; /* buffer is copied to userspace, zeroing it to avoid any data leak */