diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-07-17 14:26:52 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-07-17 14:26:52 +0000 |
commit | 9cab497a19b53e7500daebef87a889a0405d6bd3 (patch) | |
tree | dd218623fcb42f36e0296e053dcbbbb89dbbc008 | |
parent | 32ec93ba4801a829863e6c4bf7fb9cb9493807d2 (diff) |
PC5740 is umodem not umsm. Should fix PR 5181.
-rw-r--r-- | share/man/man4/umsm.4 | 3 | ||||
-rw-r--r-- | sys/dev/usb/umsm.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/share/man/man4/umsm.4 b/share/man/man4/umsm.4 index 1ef109c16ae..1f9151bdd8e 100644 --- a/share/man/man4/umsm.4 +++ b/share/man/man4/umsm.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: umsm.4,v 1.5 2006/07/16 11:33:17 jsg Exp $ +.\" $OpenBSD: umsm.4,v 1.6 2006/07/17 14:26:51 jsg Exp $ .\" .\" Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> .\" @@ -41,7 +41,6 @@ Kyocera KPC650 .Pp Devices suspected of being compatible are: .Bd -literal -offset indent -Audiovox PC5740 Novatel Merlin V620 Sierra Wireless AirCard 580 .Ed diff --git a/sys/dev/usb/umsm.c b/sys/dev/usb/umsm.c index 84a43f05039..1d8b81b2894 100644 --- a/sys/dev/usb/umsm.c +++ b/sys/dev/usb/umsm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: umsm.c,v 1.2 2006/06/23 06:27:12 miod Exp $ */ +/* $OpenBSD: umsm.c,v 1.3 2006/07/17 14:26:51 jsg Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -55,7 +55,6 @@ struct ucom_methods umsm_methods = { }; static const struct usb_devno umsm_devs[] = { - { USB_VENDOR_AUDIOVOX, USB_PRODUCT_AUDIOVOX_PC5740 }, { USB_VENDOR_AIRPRIME, USB_PRODUCT_AIRPRIME_PC5220 }, { USB_VENDOR_KYOCERA2, USB_PRODUCT_KYOCERA2_KPC650 }, { USB_VENDOR_NOVATEL, USB_PRODUCT_NOVATEL_MERLINV620 }, |