* [PATCH] iio: hid: fix the retval in accel_3d_capture_sample
@ 2023-01-11 12:22 Dmitry Perchanov
2023-01-14 16:30 ` Jonathan Cameron
0 siblings, 1 reply; 2+ messages in thread
From: Dmitry Perchanov @ 2023-01-11 12:22 UTC (permalink / raw)
To: jic23; +Cc: linux-iio, lars, demisrael
Return value should be zero for success.
This was forgotten for timestamp feature.
Verified on RealSense cameras.
Fixes: a96cd0f901ee ("iio: accel: hid-sensor-accel-3d: Add timestamp")
Signed-off-by: Dmitry Perchanov <dmitry.perchanov@intel.com>
---
drivers/iio/accel/hid-sensor-accel-3d.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/iio/accel/hid-sensor-accel-3d.c b/drivers/iio/accel/hid-sensor-accel-3d.c
index a2def6f93..5eac7ea19 100644
--- a/drivers/iio/accel/hid-sensor-accel-3d.c
+++ b/drivers/iio/accel/hid-sensor-accel-3d.c
@@ -280,6 +280,7 @@ static int accel_3d_capture_sample(struct hid_sensor_hub_device *hsdev,
hid_sensor_convert_timestamp(
&accel_state->common_attributes,
*(int64_t *)raw_data);
+ ret = 0;
break;
default:
break;
--
2.39.0
---------------------------------------------------------------------
Intel Israel (74) Limited
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] iio: hid: fix the retval in accel_3d_capture_sample
2023-01-11 12:22 [PATCH] iio: hid: fix the retval in accel_3d_capture_sample Dmitry Perchanov
@ 2023-01-14 16:30 ` Jonathan Cameron
0 siblings, 0 replies; 2+ messages in thread
From: Jonathan Cameron @ 2023-01-14 16:30 UTC (permalink / raw)
To: Dmitry Perchanov; +Cc: linux-iio, lars, demisrael
On Wed, 11 Jan 2023 14:22:10 +0200
Dmitry Perchanov <dmitry.perchanov@intel.com> wrote:
> Return value should be zero for success.
> This was forgotten for timestamp feature.
> Verified on RealSense cameras.
>
> Fixes: a96cd0f901ee ("iio: accel: hid-sensor-accel-3d: Add timestamp")
>
All tags need to be in one block with no blank lines. I've fixed
this up whilst applying. Applied to the fixes-togreg branch of iio.git.
Thanks
Jonathan
> Signed-off-by: Dmitry Perchanov <dmitry.perchanov@intel.com>
> ---
> drivers/iio/accel/hid-sensor-accel-3d.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/iio/accel/hid-sensor-accel-3d.c b/drivers/iio/accel/hid-sensor-accel-3d.c
> index a2def6f93..5eac7ea19 100644
> --- a/drivers/iio/accel/hid-sensor-accel-3d.c
> +++ b/drivers/iio/accel/hid-sensor-accel-3d.c
> @@ -280,6 +280,7 @@ static int accel_3d_capture_sample(struct hid_sensor_hub_device *hsdev,
> hid_sensor_convert_timestamp(
> &accel_state->common_attributes,
> *(int64_t *)raw_data);
> + ret = 0;
> break;
> default:
> break;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-01-14 16:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-11 12:22 [PATCH] iio: hid: fix the retval in accel_3d_capture_sample Dmitry Perchanov
2023-01-14 16:30 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox