diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2013-09-19 08:59:00 -0400 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2013-09-21 14:23:59 -0400 |
commit | 0624bf847dd0ddc9bf71ccb9d1a6fffa9e5a8dd0 (patch) | |
tree | 763093945185dd295c66909833a21ee031154028 /drivers | |
parent | a9f3acd0aac58c128686e0c775081b416048392c (diff) |
iio:tcs3472: 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: Peter Meerwald <pmeerw@pmeerw.net>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/iio/light/tcs3472.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/iio/light/tcs3472.c b/drivers/iio/light/tcs3472.c index 0b4ed57d746e..45df2204614a 100644 --- a/drivers/iio/light/tcs3472.c +++ b/drivers/iio/light/tcs3472.c | |||
@@ -192,10 +192,8 @@ static irqreturn_t tcs3472_trigger_handler(int irq, void *p) | |||
192 | len += 2; | 192 | len += 2; |
193 | } | 193 | } |
194 | 194 | ||
195 | if (indio_dev->scan_timestamp) | 195 | iio_push_to_buffers_with_timestamp(indio_dev, data->buffer, |
196 | *(s64 *)((u8 *)data->buffer + ALIGN(len, sizeof(s64))) | 196 | iio_get_time_ns()); |
197 | = iio_get_time_ns(); | ||
198 | iio_push_to_buffers(indio_dev, data->buffer); | ||
199 | 197 | ||
200 | done: | 198 | done: |
201 | iio_trigger_notify_done(indio_dev->trig); | 199 | iio_trigger_notify_done(indio_dev->trig); |