]> Git Repo - linux.git/commitdiff
iio: accel: adxl372: Fix push to buffers lost samples
authorStefan Popa <[email protected]>
Tue, 10 Sep 2019 14:44:21 +0000 (17:44 +0300)
committerJonathan Cameron <[email protected]>
Wed, 9 Oct 2019 18:11:25 +0000 (19:11 +0100)
One in two sample sets was lost by multiplying fifo_set_size with
sizeof(u16). Also, the double number of available samples were pushed to
the iio buffers.

Signed-off-by: Stefan Popa <[email protected]>
Fixes: f4f55ce38e5f ("iio:adxl372: Add FIFO and interrupts support")
Cc: <[email protected]>
Signed-off-by: Jonathan Cameron <[email protected]>
drivers/iio/accel/adxl372.c

index 863fe61a371fbffff9b2e71f054295e583a6178b..fbad4b45fe42d2d9bcf71c6e54ca1a6de06bfc9d 100644 (file)
@@ -553,8 +553,7 @@ static irqreturn_t adxl372_trigger_handler(int irq, void  *p)
                        goto err;
 
                /* Each sample is 2 bytes */
-               for (i = 0; i < fifo_entries * sizeof(u16);
-                    i += st->fifo_set_size * sizeof(u16))
+               for (i = 0; i < fifo_entries; i += st->fifo_set_size)
                        iio_push_to_buffers(indio_dev, &st->fifo_buf[i]);
        }
 err:
This page took 0.0549 seconds and 4 git commands to generate.