OSDN Git Service

media: uvcvideo: Return -EIO for control errors
authorRicardo Ribalda <ribalda@chromium.org>
Fri, 18 Jun 2021 12:29:09 +0000 (14:29 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Thu, 30 Sep 2021 08:07:47 +0000 (10:07 +0200)
The device is doing something unexpected with the control. Either because
the protocol is not properly implemented or there has been a HW error.

Fixes v4l2-compliance:

Control ioctls (Input 0):
                fail: v4l2-test-controls.cpp(448): s_ctrl returned an error (22)
        test VIDIOC_G/S_CTRL: FAIL
                fail: v4l2-test-controls.cpp(698): s_ext_ctrls returned an error (22)
        test VIDIOC_G/S/TRY_EXT_CTRLS: FAIL

Reviewed-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Ricardo Ribalda <ribalda@chromium.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/usb/uvc/uvc_video.c

index e164646..9f37eaf 100644 (file)
@@ -115,6 +115,11 @@ int uvc_query_ctrl(struct uvc_device *dev, u8 query, u8 unit,
        case 5: /* Invalid unit */
        case 6: /* Invalid control */
        case 7: /* Invalid Request */
+               /*
+                * The firmware has not properly implemented
+                * the control or there has been a HW error.
+                */
+               return -EIO;
        case 8: /* Invalid value within range */
                return -EINVAL;
        default: /* reserved or unknown */