|
@@ -18,30 +18,6 @@
|
|
|
|
|
|
#include "ad7606.h"
|
|
|
|
|
|
-int ad7606_scan_from_ring(struct iio_dev *indio_dev, unsigned ch)
|
|
|
-{
|
|
|
- struct iio_buffer *ring = indio_dev->buffer;
|
|
|
- int ret;
|
|
|
- u16 *ring_data;
|
|
|
-
|
|
|
- ring_data = kmalloc(ring->access->get_bytes_per_datum(ring),
|
|
|
- GFP_KERNEL);
|
|
|
- if (ring_data == NULL) {
|
|
|
- ret = -ENOMEM;
|
|
|
- goto error_ret;
|
|
|
- }
|
|
|
- ret = ring->access->read_last(ring, (u8 *) ring_data);
|
|
|
- if (ret)
|
|
|
- goto error_free_ring_data;
|
|
|
-
|
|
|
- ret = ring_data[ch];
|
|
|
-
|
|
|
-error_free_ring_data:
|
|
|
- kfree(ring_data);
|
|
|
-error_ret:
|
|
|
- return ret;
|
|
|
-}
|
|
|
-
|
|
|
/**
|
|
|
* ad7606_trigger_handler_th() th/bh of trigger launched polling to ring buffer
|
|
|
*
|