summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjasper <jasper@openbsd.org>2012-09-18 17:11:41 +0000
committerjasper <jasper@openbsd.org>2012-09-18 17:11:41 +0000
commita778f0d23f09888623706cc6fc59573a45b6ecef (patch)
treea72921a0f2a9fc419d8e421c77ed4a708e396280
parentregen (diff)
downloadwireguard-openbsd-a778f0d23f09888623706cc6fc59573a45b6ecef.tar.xz
wireguard-openbsd-a778f0d23f09888623706cc6fc59573a45b6ecef.zip
support the Lenovo ThinkVision LT1421
ok mglocker@
-rw-r--r--share/man/man4/udl.45
-rw-r--r--sys/dev/usb/udl.c5
2 files changed, 6 insertions, 4 deletions
diff --git a/share/man/man4/udl.4 b/share/man/man4/udl.4
index e890e24aca5..8b292ec4de7 100644
--- a/share/man/man4/udl.4
+++ b/share/man/man4/udl.4
@@ -1,4 +1,4 @@
-.\" $OpenBSD: udl.4,v 1.19 2011/03/16 23:36:38 schwarze Exp $
+.\" $OpenBSD: udl.4,v 1.20 2012/09/18 17:11:41 jasper Exp $
.\"
.\" Copyright (c) 2009 Marcus Glocker <mglocker@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: March 16 2011 $
+.Dd $Mdocdate: September 18 2012 $
.Dt UDL 4
.Os
.Sh NAME
@@ -41,6 +41,7 @@ The following devices should work:
.It IOGEAR USB 2.0 External DVI (GUC2020)
.It Koenig CMP-USBVGA10 and CMP-USBVGA11
.It Lenovo 45K5296 USB to DVI
+.It Lenovo ThinkVision LT1421
.It Lilliput UM-70
.It Nanovision MiMo UM-710 and UM-740
.It Rextron VCUD60 USB to DVI
diff --git a/sys/dev/usb/udl.c b/sys/dev/usb/udl.c
index 13c18dc823b..75929c419fb 100644
--- a/sys/dev/usb/udl.c
+++ b/sys/dev/usb/udl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: udl.c,v 1.69 2012/03/26 19:12:54 claudio Exp $ */
+/* $OpenBSD: udl.c,v 1.70 2012/09/18 17:11:41 jasper Exp $ */
/*
* Copyright (c) 2009 Marcus Glocker <mglocker@openbsd.org>
@@ -249,7 +249,8 @@ static const struct udl_type udl_devs[] = {
{ { USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_UM7X0 }, DL120 },
{ { USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_CONV }, DL160 },
{ { USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_LUM70 }, DL125 },
- { { USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_POLARIS2 }, DLUNK }
+ { { USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_POLARIS2 }, DLUNK },
+ { { USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_LT1421WIDE }, DLUNK }
};
#define udl_lookup(v, p) ((struct udl_type *)usb_lookup(udl_devs, v, p))