blob: 1fc1efa7799df968d9f350b51f04c16cfcc4de25 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef __LINUX_IIO_KFIFO_BUF_H__
3#define __LINUX_IIO_KFIFO_BUF_H__
4
5struct iio_buffer;
6struct device;
7
8struct iio_buffer *iio_kfifo_allocate(void);
9void iio_kfifo_free(struct iio_buffer *r);
10
11struct iio_buffer *devm_iio_kfifo_allocate(struct device *dev);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000012
13#endif