Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef __LINUX_IIO_KFIFO_BUF_H__
2#define __LINUX_IIO_KFIFO_BUF_H__
3
4struct iio_buffer;
5struct device;
6
7struct iio_buffer *iio_kfifo_allocate(void);
8void iio_kfifo_free(struct iio_buffer *r);
9
10struct iio_buffer *devm_iio_kfifo_allocate(struct device *dev);
11void devm_iio_kfifo_free(struct device *dev, struct iio_buffer *r);
12
13#endif