aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/imu
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2013-09-19 08:59:00 -0400
committerJonathan Cameron <jic23@kernel.org>2013-09-21 14:23:57 -0400
commit419d8ce4eafbeb45303bdf94103ac07cc89ab5bb (patch)
tree1b6c6a610795f89e329a33a9cc7c07590f3966b2 /drivers/iio/imu
parent8c7b0322b9372998b5d39abe03e5f40cdf85786b (diff)
iio:adis_lib: Use iio_push_to_buffers_with_timestamp()
Makes the code a bit shorter and less ugly. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/imu')
-rw-r--r--drivers/iio/imu/adis_buffer.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/iio/imu/adis_buffer.c b/drivers/iio/imu/adis_buffer.c
index 99d8e0b0dd34..cb32b593f1c5 100644
--- a/drivers/iio/imu/adis_buffer.c
+++ b/drivers/iio/imu/adis_buffer.c
@@ -102,13 +102,8 @@ static irqreturn_t adis_trigger_handler(int irq, void *p)
102 mutex_unlock(&adis->txrx_lock); 102 mutex_unlock(&adis->txrx_lock);
103 } 103 }
104 104
105 /* Guaranteed to be aligned with 8 byte boundary */ 105 iio_push_to_buffers_with_timestamp(indio_dev, adis->buffer,
106 if (indio_dev->scan_timestamp) { 106 pf->timestamp);
107 void *b = adis->buffer + indio_dev->scan_bytes - sizeof(s64);
108 *(s64 *)b = pf->timestamp;
109 }
110
111 iio_push_to_buffers(indio_dev, adis->buffer);
112 107
113 iio_trigger_notify_done(indio_dev->trig); 108 iio_trigger_notify_done(indio_dev->trig);
114 109