mirror of https://gitee.com/openkylin/linux.git
V4L/DVB (8184): spca508: Add Clone Digital Webcam 11043
Added ID vendor/product for Clone Digital Webcam 11043. Thanks to Ivan Brasil Fuzzer <ivan@fuzzer.com.br> for testing and data collection. Signed-off-by: Douglas Schilling Landgraf <dougsland@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
30b4d355aa
commit
69b28b1109
|
@ -144,6 +144,7 @@ spca500 06be:0800 Optimedia
|
||||||
sunplus 06d6:0031 Trust 610 LCD PowerC@m Zoom
|
sunplus 06d6:0031 Trust 610 LCD PowerC@m Zoom
|
||||||
spca506 06e1:a190 ADS Instant VCD
|
spca506 06e1:a190 ADS Instant VCD
|
||||||
spca508 0733:0110 ViewQuest VQ110
|
spca508 0733:0110 ViewQuest VQ110
|
||||||
|
spca508 0130:0130 Clone Digital Webcam 11043
|
||||||
spca501 0733:0401 Intel Create and Share
|
spca501 0733:0401 Intel Create and Share
|
||||||
spca501 0733:0402 ViewQuest M318B
|
spca501 0733:0402 ViewQuest M318B
|
||||||
spca505 0733:0430 Intel PC Camera Pro
|
spca505 0733:0430 Intel PC Camera Pro
|
||||||
|
|
|
@ -1490,8 +1490,10 @@ static int sd_config(struct gspca_dev *gspca_dev,
|
||||||
/* break; */
|
/* break; */
|
||||||
/* } */
|
/* } */
|
||||||
break;
|
break;
|
||||||
|
case 0x0130: /* Clone webcam */
|
||||||
case 0x0af9: /* Hama cameras */
|
case 0x0af9: /* Hama cameras */
|
||||||
switch (product) {
|
switch (product) {
|
||||||
|
case 0x0130:
|
||||||
case 0x0010:
|
case 0x0010:
|
||||||
sd->subtype = HamaUSBSightcam;
|
sd->subtype = HamaUSBSightcam;
|
||||||
break;
|
break;
|
||||||
|
@ -1737,6 +1739,8 @@ static __devinitdata struct usb_device_id device_table[] = {
|
||||||
{USB_DEVICE(0x0af9, 0x0010), DVNM("Hama USB Sightcam 100")},
|
{USB_DEVICE(0x0af9, 0x0010), DVNM("Hama USB Sightcam 100")},
|
||||||
{USB_DEVICE(0x0af9, 0x0011), DVNM("Hama USB Sightcam 100")},
|
{USB_DEVICE(0x0af9, 0x0011), DVNM("Hama USB Sightcam 100")},
|
||||||
{USB_DEVICE(0x8086, 0x0110), DVNM("Intel Easy PC Camera")},
|
{USB_DEVICE(0x8086, 0x0110), DVNM("Intel Easy PC Camera")},
|
||||||
|
{USB_DEVICE(0x0130, 0x0130),
|
||||||
|
DVNM("Clone Digital Webcam 11043 (spca508a)")},
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(usb, device_table);
|
MODULE_DEVICE_TABLE(usb, device_table);
|
||||||
|
|
Loading…
Reference in New Issue