2019-05-24 10:04:09 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2015-10-13 16:10:29 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2014-2015 Analog Devices Inc.
|
|
|
|
|
* Author: Lars-Peter Clausen <lars@metafoo.de>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __IIO_DMAENGINE_H__
|
|
|
|
|
#define __IIO_DMAENGINE_H__
|
|
|
|
|
|
2021-02-15 10:40:25 +00:00
|
|
|
struct iio_dev;
|
2015-10-13 16:10:29 +00:00
|
|
|
struct device;
|
|
|
|
|
|
2021-02-15 10:40:25 +00:00
|
|
|
int devm_iio_dmaengine_buffer_setup(struct device *dev,
|
|
|
|
|
struct iio_dev *indio_dev,
|
|
|
|
|
const char *channel);
|
2020-03-24 13:46:32 +00:00
|
|
|
|
2015-10-13 16:10:29 +00:00
|
|
|
#endif
|