Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: resolver: ad2s1200: Fix alignment for DMA safety

____cacheline_aligned is an insufficient guarantee for non-coherent DMA
on platforms with 128 byte cachelines above L1. Switch to the updated
IIO_DMA_MINALIGN definition.

Fixes tag is probably not where the issue was first introduced, but
is likely to be as far as anyone considers backporting this fix.

Fixes: 0bd3d338f61b ("staging: iio: ad2s1200: Improve readability with be16_to_cpup")
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Acked-by: Nuno Sá <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20220508175712.647246-89-jic23@kernel.org

+1 -1
+1 -1
drivers/iio/resolver/ad2s1200.c
··· 41 41 struct spi_device *sdev; 42 42 struct gpio_desc *sample; 43 43 struct gpio_desc *rdvel; 44 - __be16 rx ____cacheline_aligned; 44 + __be16 rx __aligned(IIO_DMA_MINALIGN); 45 45 }; 46 46 47 47 static int ad2s1200_read_raw(struct iio_dev *indio_dev,