2019-05-24 13:04:09 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2015-10-13 19:10:29 +03: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 13:40:25 +03:00
|
|
|
struct iio_dev;
|
2015-10-13 19:10:29 +03:00
|
|
|
struct device;
|
|
|
|
|
2021-02-15 13:40:25 +03:00
|
|
|
int devm_iio_dmaengine_buffer_setup(struct device *dev,
|
|
|
|
struct iio_dev *indio_dev,
|
|
|
|
const char *channel);
|
2020-03-24 16:46:32 +03:00
|
|
|
|
2015-10-13 19:10:29 +03:00
|
|
|
#endif
|