iio: accel: sca3300: Fix alignment for DMA safety
authorJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 8 May 2022 17:55:48 +0000 (18:55 +0100)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Tue, 14 Jun 2022 10:53:12 +0000 (11:53 +0100)
____cacheline_aligned is insufficient guarantee for non-coherent DMA.
Switch to the updated IIO_DMA_MINALIGN definition.

Fixes: 9cc9806e22178 ("iio: accel: Add driver for Murata SCA3300 accelerometer")
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Reviewed-by: Tomas Melin <tomas.melin@vaisala.com>
Acked-by: Nuno Sá <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20220508175712.647246-9-jic23@kernel.org
drivers/iio/accel/sca3300.c

index 861f6906beee548badc7e55c5bf8aada1e2ab0da..3c4827bfef5358e856e6b5957d8286a21e4bae4b 100644 (file)
@@ -196,7 +196,7 @@ struct sca3300_data {
                s16 channels[4];
                s64 ts __aligned(sizeof(s64));
        } scan;
-       u8 txbuf[4] ____cacheline_aligned;
+       u8 txbuf[4] __aligned(IIO_DMA_MINALIGN);
        u8 rxbuf[4];
 };