]> git.ipfire.org Git - people/arne_f/kernel.git/blame - include/linux/iio/kfifo_buf.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[people/arne_f/kernel.git] / include / linux / iio / kfifo_buf.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
08d6005c
LPC
2#ifndef __LINUX_IIO_KFIFO_BUF_H__
3#define __LINUX_IIO_KFIFO_BUF_H__
b174baf4 4
8abd5ba5
JC
5struct iio_buffer;
6struct device;
b174baf4 7
7ab374a0 8struct iio_buffer *iio_kfifo_allocate(void);
14555b14 9void iio_kfifo_free(struct iio_buffer *r);
b174baf4 10
780103fe
KW
11struct iio_buffer *devm_iio_kfifo_allocate(struct device *dev);
12void devm_iio_kfifo_free(struct device *dev, struct iio_buffer *r);
13
08d6005c 14#endif