mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 04:53:36 +01:00
Merge a78ca09540
into 0fc810ae3a
This commit is contained in:
commit
b0ab0bca2c
1 changed files with 36 additions and 0 deletions
|
@ -2450,6 +2450,42 @@ static const struct usb_device_id uvc_ids[] = {
|
|||
.bInterfaceSubClass = 1,
|
||||
.bInterfaceProtocol = 0,
|
||||
.driver_info = (kernel_ulong_t)&uvc_quirk_probe_minmax },
|
||||
|
||||
/**
|
||||
* Fix for the problem with cameras on Acer Nitro 5 Series.
|
||||
*
|
||||
* Fix required for the camera here
|
||||
* Thanks for @Giuliano69 for providing the fix
|
||||
*/
|
||||
/* Quanta ACER HD User Facing 0x4035 - Experimental */
|
||||
{ .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 - Experimental !! */
|
||||
{ .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,
|
||||
} },
|
||||
|
||||
|
||||
/* Fix end here */
|
||||
|
||||
/* Genius eFace 2025 */
|
||||
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
|
||||
| USB_DEVICE_ID_MATCH_INT_INFO,
|
||||
|
|
Loading…
Reference in a new issue