Skip to content

Commit 51924ff

Browse files
dlechjic23
authored andcommitted
iio: adc: ad4695: use IIO_DECLARE_DMA_BUFFER_WITH_TS
Use IIO_DECLARE_DMA_BUFFER_WITH_TS() to declare the buffer that gets used with iio_push_to_buffers_with_ts(). This makes the code a bit easier to read and understand. Reviewed-by: Trevor Gamblin <tgamblin@baylibre.com> Reviewed-by: Nuno Sá <nuno.sa@analog.com> Signed-off-by: David Lechner <dlechner@baylibre.com> Link: https://patch.msgid.link/20250507-iio-introduce-iio_declare_buffer_with_ts-v6-3-4aee1b9f1b89@baylibre.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
1 parent 63fc535 commit 51924ff

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

drivers/iio/adc/ad4695.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,7 @@ struct ad4695_state {
160160
struct spi_transfer buf_read_xfer[AD4695_MAX_CHANNELS * 2 + 3];
161161
struct spi_message buf_read_msg;
162162
/* Raw conversion data received. */
163-
u16 buf[ALIGN((AD4695_MAX_CHANNELS + 1) * sizeof(u16),
164-
sizeof(s64)) + sizeof(s64)] __aligned(IIO_DMA_MINALIGN);
163+
IIO_DECLARE_DMA_BUFFER_WITH_TS(u16, buf, AD4695_MAX_CHANNELS + 1);
165164
u16 raw_data;
166165
/* Commands to send for single conversion. */
167166
u16 cnv_cmd;

0 commit comments

Comments
 (0)