diff options
author | Dmitry Perchanov <[email protected]> | 2023-01-11 14:24:25 +0200 |
---|---|---|
committer | Jonathan Cameron <[email protected]> | 2023-01-14 16:31:42 +0000 |
commit | eb50cd5bfdac61627a5026566cf3b90ced7b141c (patch) | |
tree | 4fa9cace954ac2452f5cf7e221d4295bf35fdec4 | |
parent | f7b23d1c35d8b8de1425bdfccaefd01f3b7c9d1c (diff) |
iio: hid: fix the retval in gyro_3d_capture_sample
Return value should be zero for success. This was forgotten for timestamp
feature. Verified on RealSense cameras.
Fixes: 4648cbd8fb92 ("iio: hid-sensor-gyro-3d: Add timestamp channel")
Signed-off-by: Dmitry Perchanov <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Cc: <[email protected]>
Signed-off-by: Jonathan Cameron <[email protected]>
-rw-r--r-- | drivers/iio/gyro/hid-sensor-gyro-3d.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/iio/gyro/hid-sensor-gyro-3d.c b/drivers/iio/gyro/hid-sensor-gyro-3d.c index 8f0ad022c7f1..698c50da1f10 100644 --- a/drivers/iio/gyro/hid-sensor-gyro-3d.c +++ b/drivers/iio/gyro/hid-sensor-gyro-3d.c @@ -231,6 +231,7 @@ static int gyro_3d_capture_sample(struct hid_sensor_hub_device *hsdev, gyro_state->timestamp = hid_sensor_convert_timestamp(&gyro_state->common_attributes, *(s64 *)raw_data); + ret = 0; break; default: break; |