buffer-dmaengine.h 389 B

123456789101112131415161718
  1. /*
  2. * Copyright 2014-2015 Analog Devices Inc.
  3. * Author: Lars-Peter Clausen <lars@metafoo.de>
  4. *
  5. * Licensed under the GPL-2 or later.
  6. */
  7. #ifndef __IIO_DMAENGINE_H__
  8. #define __IIO_DMAENGINE_H__
  9. struct iio_buffer;
  10. struct device;
  11. struct iio_buffer *iio_dmaengine_buffer_alloc(struct device *dev,
  12. const char *channel);
  13. void iio_dmaengine_buffer_free(struct iio_buffer *buffer);
  14. #endif