Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

iio:adis16400: 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>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
parent 36e0371e
Loading
Loading
Loading
Loading
+2 −7
Original line number Original line Diff line number Diff line
@@ -82,13 +82,8 @@ irqreturn_t adis16400_trigger_handler(int irq, void *p)
		spi_setup(st->adis.spi);
		spi_setup(st->adis.spi);
	}
	}


	/* Guaranteed to be aligned with 8 byte boundary */
	iio_push_to_buffers_with_timestamp(indio_dev, adis->buffer,
	if (indio_dev->scan_timestamp) {
		pf->timestamp);
		void *b = adis->buffer + indio_dev->scan_bytes - sizeof(s64);
		*(s64 *)b = pf->timestamp;
	}

	iio_push_to_buffers(indio_dev, adis->buffer);


	iio_trigger_notify_done(indio_dev->trig);
	iio_trigger_notify_done(indio_dev->trig);