summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/man/man4/uslcom.47
-rw-r--r--sys/dev/usb/uslcom.c10
2 files changed, 14 insertions, 3 deletions
diff --git a/share/man/man4/uslcom.4 b/share/man/man4/uslcom.4
index 4bb2736b620..7f37f34253f 100644
--- a/share/man/man4/uslcom.4
+++ b/share/man/man4/uslcom.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: uslcom.4,v 1.3 2006/10/26 19:42:36 jmc Exp $
+.\" $OpenBSD: uslcom.4,v 1.4 2007/02/17 01:47:47 jsg Exp $
.\"
.\" Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
.\"
@@ -32,9 +32,14 @@ The following devices should work with the
.Nm
driver:
.Bd -literal -offset indent
+Argussoft ISP
+Baltech card reader
Burnside Telecom Desktop Mobile
chip45.com Crumb128 module
Jablotron PC-60B
+Lipowsky Baby-JTAG
+Lipowsky Baby-LIN
+Lipowsky HARP-1
Pololu USB to Serial
Silicon Laboratories CP2101
Silicon Laboratories CP2102
diff --git a/sys/dev/usb/uslcom.c b/sys/dev/usb/uslcom.c
index 2ad1de01575..43df0892ead 100644
--- a/sys/dev/usb/uslcom.c
+++ b/sys/dev/usb/uslcom.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uslcom.c,v 1.3 2006/06/23 06:27:12 miod Exp $ */
+/* $OpenBSD: uslcom.c,v 1.4 2007/02/17 01:47:47 jsg Exp $ */
/*
* Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
@@ -110,14 +110,20 @@ struct ucom_methods uslcom_methods = {
};
static const struct usb_devno uslcom_devs[] = {
+ { USB_VENDOR_BALTECH, USB_PRODUCT_BALTECH_CARDREADER },
{ USB_VENDOR_DYNASTREAM, USB_PRODUCT_DYNASTREAM_ANTDEVBOARD },
{ USB_VENDOR_JABLOTRON, USB_PRODUCT_JABLOTRON_PC60B },
+ { USB_VENDOR_SILABS, USB_PRODUCT_SILABS_ARGUSISP },
{ USB_VENDOR_SILABS, USB_PRODUCT_SILABS_CRUMB128 },
{ USB_VENDOR_SILABS, USB_PRODUCT_SILABS_DEGREECONT },
{ USB_VENDOR_SILABS, USB_PRODUCT_SILABS_DESKTOPMOBILE },
{ USB_VENDOR_SILABS, USB_PRODUCT_SILABS_IPLINK1220 },
+ { USB_VENDOR_SILABS, USB_PRODUCT_SILABS_LIPOWSKY_HARP },
+ { USB_VENDOR_SILABS, USB_PRODUCT_SILABS_LIPOWSKY_JTAG },
+ { USB_VENDOR_SILABS, USB_PRODUCT_SILABS_LIPOWSKY_LIN },
{ USB_VENDOR_SILABS, USB_PRODUCT_SILABS_POLOLU },
- { USB_VENDOR_SILABS, USB_PRODUCT_SILABS_CP210X },
+ { USB_VENDOR_SILABS, USB_PRODUCT_SILABS_CP210X_1 },
+ { USB_VENDOR_SILABS, USB_PRODUCT_SILABS_CP210X_2 },
{ USB_VENDOR_SILABS, USB_PRODUCT_SILABS_SUNNTO },
{ USB_VENDOR_SILABS2, USB_PRODUCT_SILABS2_DCU11CLONE },
{ USB_VENDOR_USI, USB_PRODUCT_USI_MC60 }