On 09/19/13 13:59, Lars-Peter Clausen wrote: > Makes the code a bit shorter and less ugly. > > Signed-off-by: Lars-Peter Clausen <lars@xxxxxxxxxx> > Cc: Manuel Stahl <manuel.stahl@xxxxxxxxxxxxxxxxx> Applied to the togreg branch of iio.git > --- > drivers/iio/gyro/itg3200_buffer.c | 5 +---- > 1 file changed, 1 insertion(+), 4 deletions(-) > > diff --git a/drivers/iio/gyro/itg3200_buffer.c b/drivers/iio/gyro/itg3200_buffer.c > index 6b3c301..e3b3c50 100644 > --- a/drivers/iio/gyro/itg3200_buffer.c > +++ b/drivers/iio/gyro/itg3200_buffer.c > @@ -55,11 +55,8 @@ static irqreturn_t itg3200_trigger_handler(int irq, void *p) > if (ret < 0) > goto error_ret; > > - if (indio_dev->scan_timestamp) > - memcpy(buf + indio_dev->scan_bytes - sizeof(s64), > - &pf->timestamp, sizeof(pf->timestamp)); > + iio_push_to_buffers_with_timestamp(indio_dev, buf, pf->timestamp); > > - iio_push_to_buffers(indio_dev, buf); > iio_trigger_notify_done(indio_dev->trig); > > error_ret: > -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html