We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1caeeb commit 01fcf12Copy full SHA for 01fcf12
drivers/iio/adc/ad7923.c
@@ -59,8 +59,10 @@ struct ad7923_state {
59
/*
60
* DMA (thus cache coherency maintenance) requires the
61
* transfer buffers to live in their own cache lines.
62
+ * Ensure rx_buf can be directly used in iio_push_to_buffers_with_timetamp
63
+ * Length = 8 channels + 4 extra for 8 byte timestamp
64
*/
- __be16 rx_buf[4] ____cacheline_aligned;
65
+ __be16 rx_buf[12] ____cacheline_aligned;
66
__be16 tx_buf[4];
67
};
68
0 commit comments