diff options
author | 2008-02-19 10:57:48 +0000 | |
---|---|---|
committer | 2008-02-19 10:57:48 +0000 | |
commit | 09ed4ab350c31a4ea6e3a7123ad0d2b5bd13d825 (patch) | |
tree | c0043dc2a08c215bfef6f6fec8edcf872b93b8df | |
parent | regen (diff) | |
download | wireguard-openbsd-09ed4ab350c31a4ea6e3a7123ad0d2b5bd13d825.tar.xz wireguard-openbsd-09ed4ab350c31a4ea6e3a7123ad0d2b5bd13d825.zip |
Match on AnyDATA ADU-500A.
Tested by Sergey Prysiazhnyi <apelsin@atmnis.com>
Diffstat (limited to '')
-rw-r--r-- | share/man/man4/umsm.4 | 5 | ||||
-rw-r--r-- | sys/dev/usb/umsm.c | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/share/man/man4/umsm.4 b/share/man/man4/umsm.4 index 5bfe2730fa2..1f5ac8f58ba 100644 --- a/share/man/man4/umsm.4 +++ b/share/man/man4/umsm.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: umsm.4,v 1.22 2007/12/15 01:11:07 stevesk Exp $ +.\" $OpenBSD: umsm.4,v 1.23 2008/02/19 10:57:48 jsg Exp $ .\" .\" Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> .\" @@ -14,7 +14,7 @@ .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: December 15 2007 $ +.Dd $Mdocdate: February 19 2008 $ .Dt UMSM 4 .Os .Sh NAME @@ -38,6 +38,7 @@ driver: .Bl -column "Device " "Bus" -compact -offset 6n .It Em "Device Bus" .It Li "AirPrime PC5220" Ta Ta CardBus +.It Li "AnyDATA ADU-500A" Ta Ta USB .It Li "Kyocera KPC650" Ta Ta CardBus .It Li "Novatel Wireless ES620" Ta Ta USB .It Li "ONDA Communication H600" Ta Ta CardBus diff --git a/sys/dev/usb/umsm.c b/sys/dev/usb/umsm.c index 43bb3cfde38..42486ef333b 100644 --- a/sys/dev/usb/umsm.c +++ b/sys/dev/usb/umsm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: umsm.c,v 1.19 2007/12/31 19:33:49 deraadt Exp $ */ +/* $OpenBSD: umsm.c,v 1.20 2008/02/19 10:57:48 jsg Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -56,6 +56,7 @@ struct ucom_methods umsm_methods = { static const struct usb_devno umsm_devs[] = { { USB_VENDOR_AIRPRIME, USB_PRODUCT_AIRPRIME_PC5220 }, + { USB_VENDOR_ANYDATA, USB_PRODUCT_ANYDATA_ADU_500A }, { USB_VENDOR_DELL, USB_PRODUCT_DELL_W5500 }, { USB_VENDOR_KYOCERA2, USB_PRODUCT_KYOCERA2_KPC650 }, { USB_VENDOR_NOVATEL1, USB_PRODUCT_NOVATEL1_FLEXPACKGPS }, |