]> asedeno.scripts.mit.edu Git - linux.git/commit
iio: imu: inv_mpu6050: make loop a do-while
authorMartin Kelly <mkelly@xevo.com>
Tue, 1 May 2018 17:56:42 +0000 (10:56 -0700)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 12 May 2018 09:01:41 +0000 (10:01 +0100)
commitcbf73ae59bee340f423479eb48aef9a0efdd8010
tree1b0ff30e17ab41169488eeb17435d2cbf83f06a8
parent21f4bb8756b22853ae3555f73ab8a44d328ee423
iio: imu: inv_mpu6050: make loop a do-while

Prior to this loop, we check if fifo_count < bytes_per_datum and bail if
so. This means that when we hit the loop, we know that fifo_count >=
bytes_per_datum, so the check is unneeded and we can turn the loop into
a do-while for a slight performance improvement.

Signed-off-by: Martin Kelly <mkelly@xevo.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c