Skip to content

Commit 7b848ed

Browse files
Dunedanmchehab
authored andcommitted
[media] uvcvideo: Quirk for webcam in MacBook Pro 2016
Add the probe def quirk for the webcam found in the Apple MacBook Pro 2016, to get it working out of the box. Signed-off-by: Daniel Roschka <[email protected]> Signed-off-by: Laurent Pinchart <[email protected]> Signed-off-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
1 parent 603c33a commit 7b848ed

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

drivers/media/usb/uvc/uvc_driver.c

+9
Original file line numberDiff line numberDiff line change
@@ -2441,6 +2441,15 @@ static struct usb_device_id uvc_ids[] = {
24412441
.bInterfaceProtocol = 0,
24422442
.driver_info = UVC_QUIRK_PROBE_MINMAX
24432443
| UVC_QUIRK_BUILTIN_ISIGHT },
2444+
/* Apple Built-In iSight via iBridge */
2445+
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
2446+
| USB_DEVICE_ID_MATCH_INT_INFO,
2447+
.idVendor = 0x05ac,
2448+
.idProduct = 0x8600,
2449+
.bInterfaceClass = USB_CLASS_VIDEO,
2450+
.bInterfaceSubClass = 1,
2451+
.bInterfaceProtocol = 0,
2452+
.driver_info = UVC_QUIRK_PROBE_DEF },
24442453
/* Foxlink ("HP Webcam" on HP Mini 5103) */
24452454
{ .match_flags = USB_DEVICE_ID_MATCH_DEVICE
24462455
| USB_DEVICE_ID_MATCH_INT_INFO,

0 commit comments

Comments
 (0)