aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video
diff options
context:
space:
mode:
authorJean Tourrilhes <jt@hpl.hp.com>2007-03-21 15:29:16 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-04-27 14:45:00 -0400
commita63e157fc6147ae9792325cb55fa0c6d1d0f9905 (patch)
treef5700cb36a3ad02a727b24d63d8a3bd08c02b827 /drivers/media/video
parentd4ca23b188d458ef508649a0c6866937b48d4bf8 (diff)
V4L/DVB (5461): Pwc: cisco VT Camera support
I have a Cisco VT Camera, and it was just collecting dust. I decided to try connecting it to my Linux box at home. Just a disgression about the product. The Cisco VT Camera is a webcam Cisco sold to work with their IP phone hardware and software. It's mostly useless on Windows, as it interfaces only to Cisco software. You can find some for cheap on eBay... Physically, it's just a Logitech Pro 4000. The only difference with the Pro 4000 is the Cisco logo and that it's grey like the Pro 3000. I believe Cisco is now selling the Cisco VT Camera II, which look to be something else... So, assuming that it was a Pro 4000 inside, I created the little patch attached. I'm new to webcam under Linux, but I managed to get an image from it using xawtv, and the image looked all right, so I consider that a success. The imaged seemed a bit small and I could not get the microphone driver loaded, but I assume it's my lack of experience. Note that I did not try any other type_id, but this one works great. Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video')
-rw-r--r--drivers/media/video/pwc/pwc-if.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/pwc/pwc-if.c b/drivers/media/video/pwc/pwc-if.c
index 27ed76986ca2..2bfe4209c515 100644
--- a/drivers/media/video/pwc/pwc-if.c
+++ b/drivers/media/video/pwc/pwc-if.c
@@ -1547,6 +1547,10 @@ static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id
1547 features |= FEATURE_MOTOR_PANTILT; 1547 features |= FEATURE_MOTOR_PANTILT;
1548 break; 1548 break;
1549 case 0x08b6: 1549 case 0x08b6:
1550 PWC_INFO("Logitech/Cisco VT Camera webcam detected.\n");
1551 name = "Cisco VT Camera";
1552 type_id = 740; /* CCD sensor */
1553 break;
1550 case 0x08b7: 1554 case 0x08b7:
1551 case 0x08b8: 1555 case 0x08b8:
1552 PWC_INFO("Logitech QuickCam detected (reserved ID).\n"); 1556 PWC_INFO("Logitech QuickCam detected (reserved ID).\n");