aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iio/adc
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:55 -0400
commite79cece0dc82c54b0c7903381ee8cfcdc3b5bfe1 (patch)
treee42277a13649e7da8d730e21bf2d8e147be11f8c /drivers/iio/adc
parenta1be505f49cacb288182c7281680ef5f93dea2f7 (diff)
iio:at91_adc: 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> Cc: Josh Wu <josh.wu@atmel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc')
-rw-r--r--drivers/iio/adc/at91_adc.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/iio/adc/at91_adc.c b/drivers/iio/adc/at91_adc.c
index 79c53b8e195c..5c8f690ce92f 100644
--- a/drivers/iio/adc/at91_adc.c
+++ b/drivers/iio/adc/at91_adc.c
@@ -83,13 +83,7 @@ static irqreturn_t at91_adc_trigger_handler(int irq, void *p)
83 j++; 83 j++;
84 } 84 }
85 85
86 if (idev->scan_timestamp) { 86 iio_push_to_buffers_with_timestamp(idev, st->buffer, pf->timestamp);
87 s64 *timestamp = (s64 *)((u8 *)st->buffer +
88 ALIGN(j, sizeof(s64)));
89 *timestamp = pf->timestamp;
90 }
91
92 iio_push_to_buffers(idev, st->buffer);
93 87
94 iio_trigger_notify_done(idev->trig); 88 iio_trigger_notify_done(idev->trig);
95 89