mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-07 13:43:51 +00:00
iio: accel: sca3000: Fix alignment for DMA safety
____cacheline_aligned is insufficient guarantee for non-coherent DMA. Switch to the updated IIO_DMA_MINALIGN definition. The second alignment marking is left in place to avoid doing more than the simple fix in this patch. Fixes:ced5c03d36
("staging:iio:accel:sca3000 merge files into one.") Fixes:152a6a884a
("staging:iio:accel:sca3000 move to hybrid hard / soft buffer design.") 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-8-jic23@kernel.org
This commit is contained in:
parent
a794b34083
commit
a263456f0e
@ -167,8 +167,8 @@ struct sca3000_state {
|
||||
int mo_det_use_count;
|
||||
struct mutex lock;
|
||||
/* Can these share a cacheline ? */
|
||||
u8 rx[384] ____cacheline_aligned;
|
||||
u8 tx[6] ____cacheline_aligned;
|
||||
u8 rx[384] __aligned(IIO_DMA_MINALIGN);
|
||||
u8 tx[6] __aligned(IIO_DMA_MINALIGN);
|
||||
};
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user