Hi Ilyas On Thu, 25 Apr 2024 at 15:27, Ilyas Erezhepov <localevil3@xxxxxxxxx> wrote: > > This patch adds two built-in video cameras for Acer laptops. > > Signed-off-by: Ilyas Erezhepov <localevil3@xxxxxxxxx> > Signed-off-by: Laurent Pinchart <laurent.pinchart@xxxxxxxxxxxxxxxx> May I ask where Laurent reviewed the patch? I am trying to find it in linux-media and I am not able to find it > > --- > drivers/media/usb/uvc/uvc_driver.c | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c > index 08fcd2ffa727..502c03b6dabe 100644 > --- a/drivers/media/usb/uvc/uvc_driver.c > +++ b/drivers/media/usb/uvc/uvc_driver.c > @@ -2454,6 +2454,29 @@ static const struct usb_device_id uvc_ids[] = { > .bInterfaceSubClass = 1, > .bInterfaceProtocol = UVC_PC_PROTOCOL_15, > .driver_info = (kernel_ulong_t)&uvc_ctrl_power_line_limited }, > + /* Quanta ACER HD User Facing 0x4035 */ > + { .match_flags = USB_DEVICE_ID_MATCH_DEVICE > + | USB_DEVICE_ID_MATCH_INT_INFO, > + .idVendor = 0x0408, > + .idProduct = 0x4035, > + .bInterfaceClass = USB_CLASS_VIDEO, > + .bInterfaceSubClass = 1, > + .bInterfaceProtocol = UVC_PC_PROTOCOL_15, > + .driver_info = (kernel_ulong_t) &(const struct uvc_device_info ) { > + .uvc_version = 0x010a, > + } > + }, > + /* Quanta ACER HD User Facing 4033 */ > + { .match_flags = USB_DEVICE_ID_MATCH_DEVICE > + | USB_DEVICE_ID_MATCH_INT_INFO, > + .idVendor = 0x0408, > + .idProduct = 0x4033, > + .bInterfaceClass = USB_CLASS_VIDEO, > + .bInterfaceSubClass = 1, > + .bInterfaceProtocol = UVC_PC_PROTOCOL_15, > + .driver_info = (kernel_ulong_t) &(const struct uvc_device_info ) { > + .uvc_version = 0x010a, } > + }, > /* LogiLink Wireless Webcam */ > { .match_flags = USB_DEVICE_ID_MATCH_DEVICE > | USB_DEVICE_ID_MATCH_INT_INFO, > -- > 2.44.0 > > -- Ricardo Ribalda