diff options
author | Jonathan Cameron <jic23@kernel.org> | 2017-01-02 20:28:28 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2017-01-10 20:54:51 +0100 |
commit | 315a19eca0e7cbae1bef7f43b36fdcfc33f248f6 (patch) | |
tree | dd2633715e4a7708a9e947e8b374116676346476 /drivers/iio/industrialio-buffer.c | |
parent | iio:buffer: Stop exporting iio_scan_mask_query (diff) | |
download | linux-315a19eca0e7cbae1bef7f43b36fdcfc33f248f6.tar.xz linux-315a19eca0e7cbae1bef7f43b36fdcfc33f248f6.zip |
iio:buffers: Push some docs down into the .c file.
Ancient legacy of me doing it wrong which it is nice to clear
up whilst we are here.
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Reviewed-by: Lars-Peter Clausen <lars@metafoo.de>
Diffstat (limited to 'drivers/iio/industrialio-buffer.c')
-rw-r--r-- | drivers/iio/industrialio-buffer.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/iio/industrialio-buffer.c b/drivers/iio/industrialio-buffer.c index 5eb991b24dff..0067e184c9ae 100644 --- a/drivers/iio/industrialio-buffer.c +++ b/drivers/iio/industrialio-buffer.c @@ -1384,6 +1384,11 @@ static int iio_push_to_buffer(struct iio_buffer *buffer, const void *data) return 0; } +/** + * iio_push_to_buffers() - push to a registered buffer. + * @indio_dev: iio_dev structure for device. + * @data: Full scan. + */ int iio_push_to_buffers(struct iio_dev *indio_dev, const void *data) { int ret; |