summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/iio/dac/ad5421.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/dac/ad5421.c b/drivers/iio/dac/ad5421.c
index 7d1e90811c71..59a0cb51265c 100644
--- a/drivers/iio/dac/ad5421.c
+++ b/drivers/iio/dac/ad5421.c
@@ -75,7 +75,7 @@ struct ad5421_state {
75 * transfer buffers to live in their own cache lines. 75 * transfer buffers to live in their own cache lines.
76 */ 76 */
77 union { 77 union {
78 u32 d32; 78 __be32 d32;
79 u8 d8[4]; 79 u8 d8[4];
80 } data[2] ____cacheline_aligned; 80 } data[2] ____cacheline_aligned;
81}; 81};