From f74d50d3e82b1386431ea5a8ce767a949aa27cc8 Mon Sep 17 00:00:00 2001 From: sanpei Date: Tue, 11 Feb 2003 00:15:01 +0000 Subject: Add support SUNTAC U-Cable TypeD2 (DS96L) PR: kern/47547 Submitted by: Kazu TAKAMUNE --- sys/dev/usb/usbdevs | 1 + sys/dev/usb/uvscom.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index b61689a..604fe14 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1049,6 +1049,7 @@ product STMICRO COMMUNICATOR 0x7554 USB Communicator product STSN STSN0001 0x0001 Internet Access Device /* SUN Corporation products */ +product SUNTAC DS96L 0x0003 SUNTAC U-Cable type D2 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 0c0acd2..f566c20 100644 --- a/sys/dev/usb/uvscom.c +++ b/sys/dev/usb/uvscom.c @@ -208,6 +208,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 U-Cable type P1 */ { USB_VENDOR_SUNTAC, USB_PRODUCT_SUNTAC_PS64P1 }, /* SUNTAC Slipper U */ -- cgit v1.1