1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

added vision camera

This commit is contained in:
Nick Hibma 1999-03-31 23:53:48 +00:00
parent 71405fb6b3
commit 44e361fd80
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=45203
2 changed files with 16 additions and 0 deletions

View File

@ -68,6 +68,7 @@
#define USB_VENDOR_KONICA 0x04c8 /* Konica Corporation */
#define USB_VENDOR_SHUTTLE 0x04e6 /* Shuttle Technology */
#define USB_VENDOR_JAZZ 0x04fa /* Jazz */
#define USB_VENDOR_VISION 0x0553 /* Vision */
#define USB_VENDOR_ATEN 0x0557 /* ATen */
#define USB_VENDOR_PERACOM 0x0565 /* Peracom */
#define USB_VENDOR_EIZO 0x056d /* EIZO */
@ -143,6 +144,9 @@
/* Jazz products */
#define USB_PRODUCT_JAZZ_J6502 0x4201 /* J-6502 speakers */
/* Vision products */
#define USB_PRODUCT_VISION_CAMERA 0x0002 /* VC6452V002 Camera */
/* ATen products */
#define USB_PRODUCT_ATEN_UC1284 0x2001 /* Parallel printer adapter */

View File

@ -177,6 +177,12 @@ struct usb_knowndev usb_knowndevs[] = {
"Jazz",
"J-6502 speakers",
},
{
USB_VENDOR_VISION, USB_PRODUCT_VISION_CAMERA,
0,
"Vision",
"VC6452V002 Camera",
},
{
USB_VENDOR_ATEN, USB_PRODUCT_ATEN_UC1284,
0,
@ -381,6 +387,12 @@ struct usb_knowndev usb_knowndevs[] = {
"Jazz",
NULL,
},
{
USB_VENDOR_VISION, 0,
USB_KNOWNDEV_NOPROD,
"Vision",
NULL,
},
{
USB_VENDOR_ATEN, 0,
USB_KNOWNDEV_NOPROD,