From: Jonathan Cameron Date: Sun, 13 Jun 2021 15:22:58 +0000 (+0100) Subject: iio: magn: rm3100: Fix alignment of buffer in iio_push_to_buffers_with_timestamp() X-Git-Tag: Ubuntu-5.4.0-85.95~726 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=968e5a5f171439ab0062ca153fdd6c204d83f83f;p=mirror_ubuntu-focal-kernel.git iio: magn: rm3100: Fix alignment of buffer in iio_push_to_buffers_with_timestamp() BugLink: https://bugs.launchpad.net/bugs/1938199 [ Upstream commit b8f939fd20690623cb24845a563e7bc1e4a21482 ] Add __aligned(8) to ensure the buffer passed to iio_push_to_buffers_with_timestamp() is suitable for the naturally aligned timestamp that will be inserted. Here an explicit structure is not used, because this buffer is used in a non-trivial way for data repacking. Fixes: 121354b2eceb ("iio: magnetometer: Add driver support for PNI RM3100") Signed-off-by: Jonathan Cameron Cc: Song Qiang Reviewed-by: Nuno Sá Link: https://lore.kernel.org/r/20210613152301.571002-6-jic23@kernel.org Signed-off-by: Sasha Levin Signed-off-by: Kamal Mostafa Signed-off-by: Stefan Bader --- diff --git a/drivers/iio/magnetometer/rm3100-core.c b/drivers/iio/magnetometer/rm3100-core.c index 7c20918d8108..f31ff225fe61 100644 --- a/drivers/iio/magnetometer/rm3100-core.c +++ b/drivers/iio/magnetometer/rm3100-core.c @@ -76,7 +76,8 @@ struct rm3100_data { bool use_interrupt; int conversion_time; int scale; - u8 buffer[RM3100_SCAN_BYTES]; + /* Ensure naturally aligned timestamp */ + u8 buffer[RM3100_SCAN_BYTES] __aligned(8); struct iio_trigger *drdy_trig; /*