]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
media: uvcvideo: Fix incorrect timeout for Get Request
authorJim Lin <jilin@nvidia.com>
Tue, 8 Aug 2017 12:56:20 +0000 (08:56 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Sun, 20 Aug 2017 12:08:07 +0000 (08:08 -0400)
Section 9.2.6.4 of USB 2.0/3.x specification describes that
"device must be able to return the first data packet to host within
500 ms of receipt of the request. For subsequent data packet, if any,
the device must be able to return them within 500 ms".

This is to fix incorrect timeout and change it from 300 ms to 500 ms
to meet the timing specified by specification for Get Request.

Signed-off-by: Jim Lin <jilin@nvidia.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/usb/uvc/uvcvideo.h

index 15e415e32c7f596fb17f94e063e820c1ef63b305..296b69bb3fb2e0c6f1d48f1d941270e4ff739cec 100644 (file)
 /* Maximum status buffer size in bytes of interrupt URB. */
 #define UVC_MAX_STATUS_SIZE    16
 
-#define UVC_CTRL_CONTROL_TIMEOUT       300
+#define UVC_CTRL_CONTROL_TIMEOUT       500
 #define UVC_CTRL_STREAMING_TIMEOUT     5000
 
 /* Maximum allowed number of control mappings per device */