aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Cameron <Jonathan.Cameron@huawei.com>2022-05-02 18:53:48 +0100
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2022-05-02 18:53:48 +0100
commitcd270243073b8c22ddcb098bea08ef3bff58c55f (patch)
treeb0ffbb8a5a70422246c544207e5b56dfa3e87d8d
parentcc0aedb0bf64ba463abc203998dc8c38900d78c2 (diff)
downloadiio-temp-alignfixup-branch.tar.gz
iio: temp: maxim_thermocouple: Fix alignment for DMA safetytemp-alignfixup-branch
____cacheline_aligned is an insufficient guarantee for non-coherent DMA on platforms with 128 byte cachelines above L1. Switch to the updated IIO_ALIGN definition Fixes: 1f25ca11d84a ("iio: temperature: add support for Maxim thermocouple chips") Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Cc: Matt Ranostay <mranostay@gmail.com>
-rw-r--r--drivers/iio/temperature/maxim_thermocouple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/temperature/maxim_thermocouple.c b/drivers/iio/temperature/maxim_thermocouple.c
index 98c41cddc6f000..03f561af6dba38 100644
--- a/drivers/iio/temperature/maxim_thermocouple.c
+++ b/drivers/iio/temperature/maxim_thermocouple.c
@@ -122,7 +122,7 @@ struct maxim_thermocouple_data {
struct spi_device *spi;
const struct maxim_thermocouple_chip *chip;
- u8 buffer[16] ____cacheline_aligned;
+ u8 buffer[16] __aligned(IIO_ALIGN);
char tc_type;
};