diff options
| author | Nate Lawson <njl@FreeBSD.org> | 2003-03-11 01:41:33 +0000 |
|---|---|---|
| committer | Nate Lawson <njl@FreeBSD.org> | 2003-03-11 01:41:33 +0000 |
| commit | bc25d60d7c44f8ed46ed8bcbcd2bc2a7f255648c (patch) | |
| tree | edfa2d113f0c490dcfec86db5e79a6a8365f3dc3 | |
| parent | acbdeb0ca185181aa68543e1752809c922f6a973 (diff) | |
Notes
| -rw-r--r-- | sys/dev/usb/usbdevs | 3 | ||||
| -rw-r--r-- | sys/dev/usb/usbdevs.h | 3 | ||||
| -rw-r--r-- | sys/dev/usb/usbdevs_data.h | 6 |
3 files changed, 12 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 3cde38e55f1f..59036d4318a7 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -448,6 +448,9 @@ product AOX USB101 0x0008 USB ethernet controller engine product APPLE OPTMOUSE 0x0302 Optical mouse product APPLE SPEAKERS 0x1101 Speakers +/* Asahi Optical products */ +product ASAHIOPTICAL OPTIO230 0x0004 Digital camera + /* ATen products */ product ATEN UC1284 0x2001 Parallel printer adapter product ATEN UC10T 0x2002 10Mbps ethernet adapter diff --git a/sys/dev/usb/usbdevs.h b/sys/dev/usb/usbdevs.h index 53ee59c4065f..026b86566301 100644 --- a/sys/dev/usb/usbdevs.h +++ b/sys/dev/usb/usbdevs.h @@ -455,6 +455,9 @@ #define USB_PRODUCT_APPLE_OPTMOUSE 0x0302 /* Optical mouse */ #define USB_PRODUCT_APPLE_SPEAKERS 0x1101 /* Speakers */ +/* Asahi Optical products */ +#define USB_PRODUCT_ASAHIOPTICAL_OPTIO230 0x0004 /* Digital camera */ + /* ATen products */ #define USB_PRODUCT_ATEN_UC1284 0x2001 /* Parallel printer adapter */ #define USB_PRODUCT_ATEN_UC10T 0x2002 /* 10Mbps ethernet adapter */ diff --git a/sys/dev/usb/usbdevs_data.h b/sys/dev/usb/usbdevs_data.h index bd9054eac737..bc3e9dcf810c 100644 --- a/sys/dev/usb/usbdevs_data.h +++ b/sys/dev/usb/usbdevs_data.h @@ -388,6 +388,12 @@ const struct usb_knowndev usb_knowndevs[] = { "Speakers", }, { + USB_VENDOR_ASAHIOPTICAL, USB_PRODUCT_ASAHIOPTICAL_OPTIO230, + 0, + "Asahi Optical", + "Digital camera", + }, + { USB_VENDOR_ATEN, USB_PRODUCT_ATEN_UC1284, 0, "ATEN International", |
