2024-09-09 08:57:42 +00:00
|
|
|
#ifndef __LINUX_IIO_KFIFO_BUF_H__
|
|
|
|
#define __LINUX_IIO_KFIFO_BUF_H__
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
#include <linux/kfifo.h>
|
2024-09-09 08:57:42 +00:00
|
|
|
#include <linux/iio/iio.h>
|
|
|
|
#include <linux/iio/buffer.h>
|
2024-09-09 08:52:07 +00:00
|
|
|
|
|
|
|
struct iio_buffer *iio_kfifo_allocate(struct iio_dev *indio_dev);
|
|
|
|
void iio_kfifo_free(struct iio_buffer *r);
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#endif
|