diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-11 09:27:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-07-11 09:27:55 +0000 |
commit | 4aa6cdf21a1d8e3ecfdbb44365f7b147d77d3d4c (patch) | |
tree | 5908dcb4c18f9877425be00edf0dd0b0a0488243 /sys | |
parent | 3818fa67fe3803d049bc04301f7e7483f520c95a (diff) |
support two more suntac products; from freebsd
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/usbdevs | 12 | ||||
-rw-r--r-- | sys/dev/usb/uvscom.c | 6 |
2 files changed, 12 insertions, 6 deletions
diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 24c3261d8c8..68051553933 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1,4 +1,4 @@ -$OpenBSD: usbdevs,v 1.93 2004/07/11 07:39:56 deraadt Exp $ +$OpenBSD: usbdevs,v 1.94 2004/07/11 09:27:54 deraadt Exp $ /* $NetBSD: usbdevs,v 1.322 2003/05/10 17:47:14 hamajima Exp $ */ /* @@ -1422,10 +1422,12 @@ product STSN STSN0001 0x0001 Internet Access Device product SUNCOMM MB_ADAPTOR 0x0003 Mobile Adaptor /* 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 -product SUNTAC IS96U 0x000a SUNTAC Ir-Trinity +product SUNTAC DS96L 0x0003 U-Cable type D2 +product SUNTAC PS64P1 0x0005 U-Cable type P1 +product SUNTAC VS10U 0x0009 Slipper U +product SUNTAC IS96U 0x000a Ir-Trinity +product SUNTAC AS64LX 0x000b U-Cable type A3 +product SUNTAC AS144L4 0x0011 U-Cable type A4 /* Sun Microsystems products */ product SUN KEYBOARD 0x0005 Type 6 diff --git a/sys/dev/usb/uvscom.c b/sys/dev/usb/uvscom.c index 34f0c4c89a7..fbb6ca36e81 100644 --- a/sys/dev/usb/uvscom.c +++ b/sys/dev/usb/uvscom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uvscom.c,v 1.4 2004/07/08 22:18:45 deraadt Exp $ */ +/* $OpenBSD: uvscom.c,v 1.5 2004/07/11 09:27:54 deraadt Exp $ */ /* $NetBSD: uvscom.c,v 1.9 2003/02/12 15:36:20 ichiro Exp $ */ /*- * Copyright (c) 2001-2002, Shunsuke Akiyama <akiyama@jp.FreeBSD.org>. @@ -215,6 +215,10 @@ struct ucom_methods uvscom_methods = { }; static const struct usb_devno uvscom_devs [] = { + /* SUNTAC U-Cable type A3 */ + { USB_VENDOR_SUNTAC, USB_PRODUCT_SUNTAC_AS64LX }, + /* SUNTAC U-Cable type A4 */ + { USB_VENDOR_SUNTAC, USB_PRODUCT_SUNTAC_AS144L4 }, /* SUNTAC U-Cable type D2 */ { USB_VENDOR_SUNTAC, USB_PRODUCT_SUNTAC_DS96L }, /* SUNTAC U-Cable type P1 */ |