2021-05-26 19:09:36 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/*
|
|
|
|
* Copyright 2014-2015 Analog Devices Inc.
|
|
|
|
* Author: Lars-Peter Clausen <lars@metafoo.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IIO_DMAENGINE_H__
|
|
|
|
#define __IIO_DMAENGINE_H__
|
|
|
|
|
2021-07-12 19:01:19 +00:00
|
|
|
struct iio_dev;
|
2021-05-26 19:09:36 +00:00
|
|
|
struct device;
|
|
|
|
|
2021-07-12 19:01:19 +00:00
|
|
|
int devm_iio_dmaengine_buffer_setup(struct device *dev,
|
|
|
|
struct iio_dev *indio_dev,
|
|
|
|
const char *channel);
|
2021-05-26 19:09:36 +00:00
|
|
|
|
|
|
|
#endif
|