diff options
Diffstat (limited to 'drivers/media/video/usbvideo')
-rw-r--r-- | drivers/media/video/usbvideo/vicam.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/usbvideo/vicam.c b/drivers/media/video/usbvideo/vicam.c index 90d48e8510ba..08f9559a6bfa 100644 --- a/drivers/media/video/usbvideo/vicam.c +++ b/drivers/media/video/usbvideo/vicam.c | |||
@@ -7,6 +7,7 @@ | |||
7 | * Monroe Williams (monroe@pobox.com) | 7 | * Monroe Williams (monroe@pobox.com) |
8 | * | 8 | * |
9 | * Supports 3COM HomeConnect PC Digital WebCam | 9 | * Supports 3COM HomeConnect PC Digital WebCam |
10 | * Supports Compro PS39U WebCam | ||
10 | * | 11 | * |
11 | * This program is free software; you can redistribute it and/or modify | 12 | * This program is free software; you can redistribute it and/or modify |
12 | * it under the terms of the GNU General Public License as published by | 13 | * it under the terms of the GNU General Public License as published by |
@@ -60,6 +61,8 @@ | |||
60 | /* Define these values to match your device */ | 61 | /* Define these values to match your device */ |
61 | #define USB_VICAM_VENDOR_ID 0x04c1 | 62 | #define USB_VICAM_VENDOR_ID 0x04c1 |
62 | #define USB_VICAM_PRODUCT_ID 0x009d | 63 | #define USB_VICAM_PRODUCT_ID 0x009d |
64 | #define USB_COMPRO_VENDOR_ID 0x0602 | ||
65 | #define USB_COMPRO_PRODUCT_ID 0x1001 | ||
63 | 66 | ||
64 | #define VICAM_BYTES_PER_PIXEL 3 | 67 | #define VICAM_BYTES_PER_PIXEL 3 |
65 | #define VICAM_MAX_READ_SIZE (512*242+128) | 68 | #define VICAM_MAX_READ_SIZE (512*242+128) |
@@ -1254,6 +1257,7 @@ static struct video_device vicam_template = { | |||
1254 | /* table of devices that work with this driver */ | 1257 | /* table of devices that work with this driver */ |
1255 | static struct usb_device_id vicam_table[] = { | 1258 | static struct usb_device_id vicam_table[] = { |
1256 | {USB_DEVICE(USB_VICAM_VENDOR_ID, USB_VICAM_PRODUCT_ID)}, | 1259 | {USB_DEVICE(USB_VICAM_VENDOR_ID, USB_VICAM_PRODUCT_ID)}, |
1260 | {USB_DEVICE(USB_COMPRO_VENDOR_ID, USB_COMPRO_PRODUCT_ID)}, | ||
1257 | {} /* Terminating entry */ | 1261 | {} /* Terminating entry */ |
1258 | }; | 1262 | }; |
1259 | 1263 | ||