提交 fce8abfd 编写于 作者: L Lars-Peter Clausen 提交者: Jonathan Cameron

iio:ad7266: Use iio_push_to_buffers_with_timestamp()

Makes the code a bit shorter and less ugly.
Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: NJonathan Cameron <jic23@kernel.org>
上级 6bf9d877
...@@ -96,9 +96,8 @@ static irqreturn_t ad7266_trigger_handler(int irq, void *p) ...@@ -96,9 +96,8 @@ static irqreturn_t ad7266_trigger_handler(int irq, void *p)
ret = spi_read(st->spi, st->data, 4); ret = spi_read(st->spi, st->data, 4);
if (ret == 0) { if (ret == 0) {
if (indio_dev->scan_timestamp) iio_push_to_buffers_with_timestamp(indio_dev, st->data,
((s64 *)st->data)[1] = pf->timestamp; pf->timestamp);
iio_push_to_buffers(indio_dev, st->data);
} }
iio_trigger_notify_done(indio_dev->trig); iio_trigger_notify_done(indio_dev->trig);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册