aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2016-01-22 05:53:55 -0500
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2016-02-01 07:21:10 -0500
commit7445e45d19a09e5269dc85f17f9635be29d2f76c (patch)
treebe4b88f75e6b71c74be63dc1b1d70840fec91838
parentc89f8d47a171243fcac56b136e8526189035f8ee (diff)
[media] pwc: Add USB id for Philips Spc880nc webcam
SPC 880NC PC camera discussions: http://www.pclinuxos.com/forum/index.php/topic,135688.0.html Cc: stable@vger.kernel.org Reported-by: Kikim <klucznik0@op.pl> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
-rw-r--r--drivers/media/usb/pwc/pwc-if.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/media/usb/pwc/pwc-if.c b/drivers/media/usb/pwc/pwc-if.c
index 086cf1c7bd7d..18aed5dd325e 100644
--- a/drivers/media/usb/pwc/pwc-if.c
+++ b/drivers/media/usb/pwc/pwc-if.c
@@ -91,6 +91,7 @@ static const struct usb_device_id pwc_device_table [] = {
91 { USB_DEVICE(0x0471, 0x0312) }, 91 { USB_DEVICE(0x0471, 0x0312) },
92 { USB_DEVICE(0x0471, 0x0313) }, /* the 'new' 720K */ 92 { USB_DEVICE(0x0471, 0x0313) }, /* the 'new' 720K */
93 { USB_DEVICE(0x0471, 0x0329) }, /* Philips SPC 900NC PC Camera */ 93 { USB_DEVICE(0x0471, 0x0329) }, /* Philips SPC 900NC PC Camera */
94 { USB_DEVICE(0x0471, 0x032C) }, /* Philips SPC 880NC PC Camera */
94 { USB_DEVICE(0x069A, 0x0001) }, /* Askey */ 95 { USB_DEVICE(0x069A, 0x0001) }, /* Askey */
95 { USB_DEVICE(0x046D, 0x08B0) }, /* Logitech QuickCam Pro 3000 */ 96 { USB_DEVICE(0x046D, 0x08B0) }, /* Logitech QuickCam Pro 3000 */
96 { USB_DEVICE(0x046D, 0x08B1) }, /* Logitech QuickCam Notebook Pro */ 97 { USB_DEVICE(0x046D, 0x08B1) }, /* Logitech QuickCam Notebook Pro */
@@ -810,6 +811,11 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id
810 name = "Philips SPC 900NC webcam"; 811 name = "Philips SPC 900NC webcam";
811 type_id = 740; 812 type_id = 740;
812 break; 813 break;
814 case 0x032C:
815 PWC_INFO("Philips SPC 880NC USB webcam detected.\n");
816 name = "Philips SPC 880NC webcam";
817 type_id = 740;
818 break;
813 default: 819 default:
814 return -ENODEV; 820 return -ENODEV;
815 break; 821 break;