chrome-internal-fetch has submitted this change and it was merged.
Change subject: CHROMIUM: uvcvideo: Add support for Polycom CX5500.
......................................................................
CHROMIUM: uvcvideo: Add support for Polycom CX5500.
This device appears to require the UVC_QUIRK_PROBE_MINMAX quirk.
Signed-off-by: Pawel Osciak <
pos...@chromium.org>
BUG=None
TEST=Test camera capture.
Change-Id: I74572becf40d2b1941fcf197137bc7588c75fbbd
Reviewed-on:
https://chromium-review.googlesource.com/209511
Reviewed-by: Julius Werner <
jwe...@chromium.org>
Tested-by: Pawel Osciak <
pos...@chromium.org>
Commit-Queue: Olof Johansson <
ol...@chromium.org>
---
M drivers/media/usb/uvc/uvc_driver.c
1 file changed, 9 insertions(+), 0 deletions(-)
Approvals:
Pawel Osciak: Verified
Julius Werner: Looks good to me, approved
Olof Johansson: Ready
diff --git a/drivers/media/usb/uvc/uvc_driver.c
b/drivers/media/usb/uvc/uvc_driver.c
index ebfd4f7..ab62575 100644
--- a/drivers/media/usb/uvc/uvc_driver.c
+++ b/drivers/media/usb/uvc/uvc_driver.c
@@ -2431,6 +2431,15 @@
.bInterfaceProtocol = 0,
.driver_info = UVC_QUIRK_PROBE_MINMAX
| UVC_QUIRK_IGNORE_SELECTOR_UNIT },
+ /* Polycom CX5500 */
+ { .match_flags = USB_DEVICE_ID_MATCH_DEVICE
+ | USB_DEVICE_ID_MATCH_INT_INFO,
+ .idVendor = 0x095d,
+ .idProduct = 0x9101,
+ .bInterfaceClass = USB_CLASS_VIDEO,
+ .bInterfaceSubClass = 1,
+ .bInterfaceProtocol = 0,
+ .driver_info = UVC_QUIRK_PROBE_MINMAX },
/* Generic USB Video Class */
{ USB_INTERFACE_INFO(USB_CLASS_VIDEO, 1, 0) },
{}
--
To view, visit
https://chromium-review.googlesource.com/209511
To unsubscribe, visit
https://chromium-review.googlesource.com/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I74572becf40d2b1941fcf197137bc7588c75fbbd
Gerrit-PatchSet: 2
Gerrit-Project: chromiumos/third_party/kernel
Gerrit-Branch: chromeos-3.8
Gerrit-Owner: Pawel Osciak <
pos...@chromium.org>
Gerrit-Reviewer: Julius Werner <
jwe...@chromium.org>
Gerrit-Reviewer: Olof Johansson <
ol...@chromium.org>
Gerrit-Reviewer: Pawel Osciak <
pos...@chromium.org>
Gerrit-Reviewer: chrome-internal-fetch <
chrome-int...@google.com>