Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1161888
| From | Dennis Chen <barracks510@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] USB: uvc: add support for the Microsoft Surface Pro 3 Cameras |
| Date | 2015-06-10 03:10 +0200 |
| Message-ID | <pzCGJ-7eW-3@gated-at.bofh.it> (permalink) |
| References | <pzxQK-8ln-3@gated-at.bofh.it> <pzCx4-6Oa-7@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Add support for the Microsoft Surface Pro 3 Cameras.
Signed-off-by: Dennis Chen <barracks510@gmail.com>
---
drivers/media/usb/uvc/uvc_driver.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/media/usb/uvc/uvc_driver.c b/drivers/media/usb/uvc/uvc_driver.c
index 5970dd6..ec5a407 100644
--- a/drivers/media/usb/uvc/uvc_driver.c
+++ b/drivers/media/usb/uvc/uvc_driver.c
@@ -2538,6 +2538,22 @@ static struct usb_device_id uvc_ids[] = {
.bInterfaceSubClass = 1,
.bInterfaceProtocol = 0,
.driver_info = UVC_QUIRK_FORCE_Y8 },
+ /*Microsoft Surface Pro 3 Front Camera*/
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE
+ | USB_DEVICE_ID_MATCH_INT_INFO,
+ .idVendor = 0x045e,
+ .idProduct = 0x07be,
+ .bInterfaceClass = USB_CLASS_VIDEO,
+ .bInterfaceSubClass = 1,
+ .bInterfaceProtocol = 1 },
+ /* Microsoft Surface Pro 3 Rear */
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE
+ | USB_DEVICE_ID_MATCH_INT_INFO,
+ .idVendor = 0x045e,
+ .idProduct = 0x07bf,
+ .bInterfaceClass = USB_CLASS_VIDEO,
+ .bInterfaceSubClass = 1,
+ .bInterfaceProtocol = 1 },
/* Generic USB Video Class */
{ USB_INTERFACE_INFO(USB_CLASS_VIDEO, 1, 0) },
{}
--
2.4.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
Re: [PATCH] USB: uvc: add support for the Microsoft Surface Pro 3 Cameras Dennis Chen <barracks510@gmail.com> - 2015-06-10 03:10 +0200
Re: [PATCH] USB: uvc: add support for the Microsoft Surface Pro 3 Cameras Laurent Pinchart <laurent.pinchart@ideasonboard.com> - 2015-06-10 03:20 +0200
Re: [PATCH] USB: uvc: add support for the Microsoft Surface Pro 3 Cameras Dennis Chen <barracks510@gmail.com> - 2015-06-10 03:50 +0200
csiph-web