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> Applied ot the togreg branch of iio.git > --- > drivers/staging/iio/accel/lis3l02dq_ring.c | 6 +----- > 1 file changed, 1 insertion(+), 5 deletions(-) > > diff --git a/drivers/staging/iio/accel/lis3l02dq_ring.c b/drivers/staging/iio/accel/lis3l02dq_ring.c > index 36dcc7e..aae86dd 100644 > --- a/drivers/staging/iio/accel/lis3l02dq_ring.c > +++ b/drivers/staging/iio/accel/lis3l02dq_ring.c > @@ -146,11 +146,7 @@ static irqreturn_t lis3l02dq_trigger_handler(int irq, void *p) > if (!bitmap_empty(indio_dev->active_scan_mask, indio_dev->masklength)) > len = lis3l02dq_get_buffer_element(indio_dev, data); > > - /* Guaranteed to be aligned with 8 byte boundary */ > - if (indio_dev->scan_timestamp) > - *(s64 *)((u8 *)data + ALIGN(len, sizeof(s64))) > - = pf->timestamp; > - iio_push_to_buffers(indio_dev, data); > + iio_push_to_buffers_with_timestamp(indio_dev, data, pf->timestamp); > > kfree(data); > done: > -- 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