Commit e79cece0 authored by Lars-Peter Clausen's avatar Lars-Peter Clausen Committed by Jonathan Cameron
Browse files

iio:at91_adc: Use iio_push_to_buffers_with_timestamp()



Makes the code a bit shorter and less ugly.

Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Cc: Josh Wu <josh.wu@atmel.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent a1be505f
Loading
Loading
Loading
Loading
+1 −7
Original line number Diff line number Diff line
@@ -83,13 +83,7 @@ static irqreturn_t at91_adc_trigger_handler(int irq, void *p)
		j++;
	}

	if (idev->scan_timestamp) {
		s64 *timestamp = (s64 *)((u8 *)st->buffer +
					ALIGN(j, sizeof(s64)));
		*timestamp = pf->timestamp;
	}

	iio_push_to_buffers(idev, st->buffer);
	iio_push_to_buffers_with_timestamp(idev, st->buffer, pf->timestamp);

	iio_trigger_notify_done(idev->trig);