Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5a103e7d authored by Irina Tirdea's avatar Irina Tirdea Committed by Greg Kroah-Hartman
Browse files

iio: gyro: bmg160: fix buffer read values



commit b475c59b113db1e66eb9527ffdec3c5241c847e5 upstream.

When reading gyroscope axes using iio buffers, the values
returned are always 0. In the interrupt handler, the return
value of the read operation is returned to the user instead
of the value read. Return the value read to the user.

This is also fixed in commit 82d8e5da1a33 ("iio:
accel: bmg160: optimize transfers in trigger handler").

Signed-off-by: default avatarIrina Tirdea <irina.tirdea@intel.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 82bd14ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -780,7 +780,7 @@ static irqreturn_t bmg160_trigger_handler(int irq, void *p)
			mutex_unlock(&data->mutex);
			goto err;
		}
		data->buffer[i++] = ret;
		data->buffer[i++] = val;
	}
	mutex_unlock(&data->mutex);