Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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 <dmitry.perchanov@intel.com>
Link: https://lore.kernel.org/r/7c1809dc74eb2f58a20595f4d02e76934f8e9219.camel@intel.com
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Dmitry Perchanov and committed by
Jonathan Cameron
eb50cd5b f7b23d1c

+1
+1
drivers/iio/gyro/hid-sensor-gyro-3d.c
··· 231 231 gyro_state->timestamp = 232 232 hid_sensor_convert_timestamp(&gyro_state->common_attributes, 233 233 *(s64 *)raw_data); 234 + ret = 0; 234 235 break; 235 236 default: 236 237 break;