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

iio: common: ssp: 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: 50dd64d57eee ("iio: common: ssp_sensors: Add sensorhub driver")
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-43-jic23@kernel.org

+1 -2
+1 -2
drivers/iio/common/ssp_sensors/ssp.h
··· 221 221 struct iio_dev *sensor_devs[SSP_SENSOR_MAX]; 222 222 atomic_t enable_refcount; 223 223 224 - __le16 header_buffer[SSP_HEADER_BUFFER_SIZE / sizeof(__le16)] 225 - ____cacheline_aligned; 224 + __le16 header_buffer[SSP_HEADER_BUFFER_SIZE / sizeof(__le16)] __aligned(IIO_DMA_MINALIGN); 226 225 }; 227 226 228 227 void ssp_clean_pending_list(struct ssp_data *data);