Skip to content

Commit 2762eab

Browse files
ijgs02mchehab
authored andcommitted
media: uvcvideo: Add Kurokesu C1 PRO camera
Add support for the Kurokesu C1 PRO camera. This camera experiences the same issues faced by the Sonix Technology Co. 292A IPC AR0330. As such, enable the UVC_QUIRK_MJPEG_NO_EOF quirk for this device to prevent frames from being erroneously dropped. Signed-off-by: Isaac Scott <[email protected]> Reviewed-by: Laurent Pinchart <[email protected]> Signed-off-by: Laurent Pinchart <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 81f8c0e commit 2762eab

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/media/usb/uvc/uvc_driver.c

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2885,6 +2885,15 @@ static const struct usb_device_id uvc_ids[] = {
28852885
.bInterfaceSubClass = 1,
28862886
.bInterfaceProtocol = 0,
28872887
.driver_info = (kernel_ulong_t)&uvc_quirk_probe_minmax },
2888+
/* Kurokesu C1 PRO */
2889+
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
2890+
| USB_DEVICE_ID_MATCH_INT_INFO,
2891+
.idVendor = 0x16d0,
2892+
.idProduct = 0x0ed1,
2893+
.bInterfaceClass = USB_CLASS_VIDEO,
2894+
.bInterfaceSubClass = 1,
2895+
.bInterfaceProtocol = 0,
2896+
.driver_info = UVC_INFO_QUIRK(UVC_QUIRK_MJPEG_NO_EOF) },
28882897
/* Syntek (HP Spartan) */
28892898
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
28902899
| USB_DEVICE_ID_MATCH_INT_INFO,

0 commit comments

Comments
 (0)