diff options
author | sanpei <sanpei@FreeBSD.org> | 2003-02-13 12:55:18 +0000 |
---|---|---|
committer | sanpei <sanpei@FreeBSD.org> | 2003-02-13 12:55:18 +0000 |
commit | 1d841a831a7f465d45b747eed007dcd063a8a2a1 (patch) | |
tree | 995ada47824f2dbc0139090e80f04efabaa895eb /sys/dev/usb | |
parent | e7ee23843ea11888a913445b9eaf14fe36aeec32 (diff) | |
download | FreeBSD-src-1d841a831a7f465d45b747eed007dcd063a8a2a1.zip FreeBSD-src-1d841a831a7f465d45b747eed007dcd063a8a2a1.tar.gz |
Add support SUNTAC Ir-Trinity IS96U
PR: 48212
Submitted by: Masaharu FUJITA <m@fjts.org>
Diffstat (limited to 'sys/dev/usb')
-rw-r--r-- | sys/dev/usb/usbdevs | 1 | ||||
-rw-r--r-- | sys/dev/usb/uvscom.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 22fde794..3cde38e 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1050,6 +1050,7 @@ product STSN STSN0001 0x0001 Internet Access Device /* SUN Corporation products */ product SUNTAC DS96L 0x0003 SUNTAC U-Cable type D2 +product SUNTAC IS96U 0x000a SUNTAC Ir-Trinity product SUNTAC PS64P1 0x0005 SUNTAC U-Cable type P1 product SUNTAC VS10U 0x0009 SUNTAC Slipper U diff --git a/sys/dev/usb/uvscom.c b/sys/dev/usb/uvscom.c index f566c20..bc9a856 100644 --- a/sys/dev/usb/uvscom.c +++ b/sys/dev/usb/uvscom.c @@ -210,6 +210,8 @@ struct ucom_callback uvscom_callback = { static const struct usb_devno uvscom_devs [] = { /* SUNTAC U-Cable type D2 */ { USB_VENDOR_SUNTAC, USB_PRODUCT_SUNTAC_DS96L }, + /* SUNTAC Ir-Trinity */ + { USB_VENDOR_SUNTAC, USB_PRODUCT_SUNTAC_IS96U }, /* SUNTAC U-Cable type P1 */ { USB_VENDOR_SUNTAC, USB_PRODUCT_SUNTAC_PS64P1 }, /* SUNTAC Slipper U */ |