diff options
author | Daniel Baluta <daniel.baluta@intel.com> | 2016-02-18 18:53:11 +0300 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-02-24 23:40:44 +0300 |
commit | 371a76603c7e13c4b05755fb99618fa29a11e044 (patch) | |
tree | 1c5b38a70390e51e6922380e44d0822334a4de83 /drivers/iio | |
parent | aeeb18fcf661ca88aee901f10bc37da347eef70c (diff) | |
download | linux-371a76603c7e13c4b05755fb99618fa29a11e044.tar.xz |
iio: imu: inv_mpu6050: Fix code indent for if statement
This fixes the following checkpatch.pl warning:
WARNING: suspect code indent for conditional statements (8, 24)
+ if (kfifo_len(&st->timestamps) >
[...]
+ goto flush_fifo;
Signed-off-by: Daniel Baluta <daniel.baluta@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c index 441080b81f00..0bc5091102f1 100644 --- a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c +++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c @@ -158,8 +158,8 @@ irqreturn_t inv_mpu6050_read_fifo(int irq, void *p) goto flush_fifo; /* Timestamp mismatch. */ if (kfifo_len(&st->timestamps) > - fifo_count / bytes_per_datum + INV_MPU6050_TIME_STAMP_TOR) - goto flush_fifo; + fifo_count / bytes_per_datum + INV_MPU6050_TIME_STAMP_TOR) + goto flush_fifo; while (fifo_count >= bytes_per_datum) { result = regmap_bulk_read(st->map, st->reg->fifo_r_w, data, bytes_per_datum); |