aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/iio
diff options
context:
space:
mode:
authorAlexandru Ardelean <alexandru.ardelean@analog.com>2020-03-24 15:46:32 +0200
committerJonathan Cameron <Jonathan.Cameron@huawei.com>2020-04-19 16:56:22 +0100
commite0fcca9fbd99e959855aa1d66c125d696f969e68 (patch)
treebc9dec13b29e4d4fe40d49ad297feee15fbd0331 /include/linux/iio
parentiio: buffer-dmaengine: use %zu specifier for sprintf(align) (diff)
downloadwireguard-linux-e0fcca9fbd99e959855aa1d66c125d696f969e68.tar.xz
wireguard-linux-e0fcca9fbd99e959855aa1d66c125d696f969e68.zip
iio: buffer-dmaengine: add dev-managed calls for buffer alloc
Currently, when using a 'iio_dmaengine_buffer_alloc()', an matching call to 'iio_dmaengine_buffer_free()' must be made. With this change, this can be avoided by using 'devm_iio_dmaengine_buffer_alloc()'. The buffer will get free'd via the device's devres handling. Signed-off-by: Alexandru Ardelean <alexandru.ardelean@analog.com> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'include/linux/iio')
-rw-r--r--include/linux/iio/buffer-dmaengine.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/iio/buffer-dmaengine.h b/include/linux/iio/buffer-dmaengine.h
index b3a57444a886..0e503db71289 100644
--- a/include/linux/iio/buffer-dmaengine.h
+++ b/include/linux/iio/buffer-dmaengine.h
@@ -14,4 +14,7 @@ struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
const char *channel);
void iio_dmaengine_buffer_free(struct iio_buffer *buffer);
+struct iio_buffer *devm_iio_dmaengine_buffer_alloc(struct device *dev,
+ const char *channel);
+
#endif