driver, iio, mpuxxx: do nothing when fifo count is zero
authorZorro Liu <lyx@rock-chips.com>
Fri, 17 Jun 2016 03:43:19 +0000 (11:43 +0800)
committerZorro Liu <lyx@rock-chips.com>
Sat, 18 Jun 2016 10:03:25 +0000 (18:03 +0800)
if fifo count is zero, just wait for data ready, there is
no need to reset HW and SW fifo, or things may worse

Change-Id: Ie65cdfde9c4939be772861f5c0842fb66c384827
Signed-off-by: Zorro Liu <lyx@rock-chips.com>
drivers/staging/iio/imu/inv_mpu/inv_mpu_ring.c

index d8558d75c70d4a442e8ae23eaa1a795c46cc8d46..b4f15531da52b0c64ff57a19e8ead0f9b3a25cf7 100644 (file)
@@ -1002,8 +1002,10 @@ irqreturn_t inv_read_fifo(int irq, void *dev_id)
                if (result)
                        goto end_session;
                fifo_count = be16_to_cpup((__be16 *)(&data[0]));
+               /*
                if (fifo_count == 0)
                        goto flush_fifo;
+               */
                if (fifo_count < bytes_per_datum)
                        goto end_session;
                /* fifo count can't be odd number */