diff options
author | 2005-05-23 21:20:13 +0000 | |
---|---|---|
committer | 2005-05-23 21:20:13 +0000 | |
commit | 277e4f83dc5e2ef89f339a5a00e1bb0a46e94ed5 (patch) | |
tree | cf4c086edd7672c155623da930431df6be7f0f79 | |
parent | re-enable softdep notification of inode mode change, (diff) | |
download | wireguard-openbsd-277e4f83dc5e2ef89f339a5a00e1bb0a46e94ed5.tar.xz wireguard-openbsd-277e4f83dc5e2ef89f339a5a00e1bb0a46e94ed5.zip |
suspected airprime pc5220 EVDO support
-rw-r--r-- | share/man/man4/uplcom.4 | 9 | ||||
-rw-r--r-- | sys/dev/usb/uplcom.c | 4 |
2 files changed, 8 insertions, 5 deletions
diff --git a/share/man/man4/uplcom.4 b/share/man/man4/uplcom.4 index 1e2ec1a2dcd..31f1141873f 100644 --- a/share/man/man4/uplcom.4 +++ b/share/man/man4/uplcom.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: uplcom.4,v 1.10 2004/10/26 00:37:07 jsg Exp $ +.\" $OpenBSD: uplcom.4,v 1.11 2005/05/23 21:20:13 deraadt Exp $ .\" $NetBSD: uplcom.4,v 1.6 2001/05/22 00:21:25 jhawk Exp $ .\" .\" Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -50,6 +50,7 @@ The driver supports the following adapters: .Pp .Bl -tag -width Ds -offset indent -compact +.It AirPrime CDMA Wireless EVDO card .It ELECOM UC-SGT .It Ericsson DCU-10 & DCU-11, made by Susteen, Inc. .It HAL Crossam2+USB @@ -57,13 +58,13 @@ driver supports the following adapters: .It I/O DATA USB-RSAQ .It I/O DATA USB-RSAQ2 .It IOGEAR UC-232A -.It Pharos USB GPS .It PLANEX USB-RS232 URS-03 +.It Pharos USB GPS .It RATOC REX-USB60 -.It Sitecom USB-Serial CNA-104 .It SOURCENEXT KeikaiDenwa 8 -.It TDK USB-PHS Adapter UHA6400 +.It Sitecom USB-Serial CNA-104 .It TDK USB-PDC Adapter UPA9664 +.It TDK USB-PHS Adapter UHA6400 .It Tripp-Lite U209 .El .Sh DESCRIPTION diff --git a/sys/dev/usb/uplcom.c b/sys/dev/usb/uplcom.c index d926fe9e54a..8a027d15401 100644 --- a/sys/dev/usb/uplcom.c +++ b/sys/dev/usb/uplcom.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uplcom.c,v 1.21 2005/01/28 22:35:16 djm Exp $ */ +/* $OpenBSD: uplcom.c,v 1.22 2005/05/23 21:20:14 deraadt Exp $ */ /* $NetBSD: uplcom.c,v 1.29 2002/09/23 05:51:23 simonb Exp $ */ /* * Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -191,6 +191,8 @@ static const struct usb_devno uplcom_devs[] = { { USB_VENDOR_SOURCENEXT, USB_PRODUCT_SOURCENEXT_KEIKAI8_CHG }, /* HAL Corporation Crossam2+USB */ { USB_VENDOR_HAL, USB_PRODUCT_HAL_IMR001 }, + /* AirPrime CDMA Wireless EVDO card */ + { USB_VENDOR_AIRPRIME, USB_PRODUCT_AIRPRIME_PC5220 }, }; #define uplcom_lookup(v, p) usb_lookup(uplcom_devs, v, p) |