Commit 1d2d8524 authored by David Lechner's avatar David Lechner Committed by Jonathan Cameron
Browse files

iio: imu: inv_mpu6050: align buffer for timestamp



Align the buffer used with iio_push_to_buffers_with_timestamp() to
ensure the s64 timestamp is aligned to 8 bytes.

Fixes: 0829edc4 ("iio: imu: inv_mpu6050: read the full fifo when processing data")
Signed-off-by: default avatarDavid Lechner <dlechner@baylibre.com>
Link: https://patch.msgid.link/20250417-iio-more-timestamp-alignment-v1-7-eafac1e22318@baylibre.com


Cc: <Stable@vger.kernel.org>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 4551383e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ irqreturn_t inv_mpu6050_read_fifo(int irq, void *p)
	u16 fifo_count;
	u32 fifo_period;
	s64 timestamp;
	u8 data[INV_MPU6050_OUTPUT_DATA_SIZE];
	u8 data[INV_MPU6050_OUTPUT_DATA_SIZE] __aligned(8);
	size_t i, nb;

	mutex_lock(&st->lock);