Hi Isaac, Thank you for the patch. On Tue, Dec 17, 2024 at 11:13:51AM +0000, Isaac Scott wrote: > 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 <isaac.scott@xxxxxxxxxxxxxxxx> > --- > This camera experiences the same issues as the other camera in this > series. As it is dependent on the series that is not yet merged, I am > appending it here so they can be merged together. > drivers/media/usb/uvc/uvc_driver.c | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c > index 1d029ef654bd..45028b45906a 100644 > --- a/drivers/media/usb/uvc/uvc_driver.c > +++ b/drivers/media/usb/uvc/uvc_driver.c > @@ -2768,6 +2768,15 @@ static const struct usb_device_id uvc_ids[] = { > .bInterfaceSubClass = 1, > .bInterfaceProtocol = 0, > .driver_info = UVC_INFO_QUIRK(UVC_QUIRK_MJPEG_NO_EOF) }, > + /* Kurokesu C1 PRO */ > + { .match_flags = USB_DEVICE_ID_MATCH_DEVICE > + | USB_DEVICE_ID_MATCH_INT_INFO, > + .idVendor = 0x16d0, > + .idProduct = 0x0ed1, > + .bInterfaceClass = USB_CLASS_VIDEO, > + .bInterfaceSubClass = 1, > + .bInterfaceProtocol = 0, > + .driver_info = UVC_INFO_QUIRK(UVC_QUIRK_MJPEG_NO_EOF) }, Please keep entries sorted by VID:PID. I'll fix this locally, there's no need to send a new version, but please remember this for the future. Reviewed-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> > /* MT6227 */ > { .match_flags = USB_DEVICE_ID_MATCH_DEVICE > | USB_DEVICE_ID_MATCH_INT_INFO, -- Regards, Laurent Pinchart