blob: 1a8d57a417387d7bd7843e46ab1ee7f21a63bcf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __LINUX_IIO_KFIFO_BUF_H__
#define __LINUX_IIO_KFIFO_BUF_H__
#include <linux/kfifo.h>
#include <linux/iio/iio.h>
#include <linux/iio/buffer.h>
struct iio_buffer *iio_kfifo_allocate(void);
void iio_kfifo_free(struct iio_buffer *r);
#endif
|