mirror of
https://github.com/torvalds/linux.git
synced 2024-11-06 03:51:48 +00:00
staging:iio:mxs-lradc: 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> Reviewed-by: Marek Vasut <marex@denx.de> Cc: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
c6f06818d0
commit
4fa10de656
@ -625,13 +625,7 @@ static irqreturn_t mxs_lradc_trigger_handler(int irq, void *p)
|
||||
j++;
|
||||
}
|
||||
|
||||
if (iio->scan_timestamp) {
|
||||
s64 *timestamp = (s64 *)((u8 *)lradc->buffer +
|
||||
ALIGN(j, sizeof(s64)));
|
||||
*timestamp = pf->timestamp;
|
||||
}
|
||||
|
||||
iio_push_to_buffers(iio, lradc->buffer);
|
||||
iio_push_to_buffers_with_timestamp(iio, lradc->buffer, pf->timestamp);
|
||||
|
||||
iio_trigger_notify_done(iio->trig);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user