diff options
author | hselasky <hselasky@FreeBSD.org> | 2016-03-30 10:05:52 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2016-03-30 10:05:52 +0000 |
commit | 0d88b46e6fd97795a9850807c6bed0f90ecf1c26 (patch) | |
tree | 30aa6dc22ef6585fdae5ea0f71f1cdd9a19697a4 | |
parent | e085da7ec1c751ccfe639cb18cff75c645382a78 (diff) | |
download | FreeBSD-src-0d88b46e6fd97795a9850807c6bed0f90ecf1c26.zip FreeBSD-src-0d88b46e6fd97795a9850807c6bed0f90ecf1c26.tar.gz |
Add new USB ID to UDL driver.
Submitted by: Matthias Petermann <matthias@petermann-it.de>
PR: 201084
-rw-r--r-- | share/man/man4/udl.4 | 1 | ||||
-rw-r--r-- | sys/dev/usb/usbdevs | 1 | ||||
-rw-r--r-- | sys/dev/usb/video/udl.c | 3 |
3 files changed, 4 insertions, 1 deletions
diff --git a/share/man/man4/udl.4 b/share/man/man4/udl.4 index 2699cc7..572fe8f 100644 --- a/share/man/man4/udl.4 +++ b/share/man/man4/udl.4 @@ -62,6 +62,7 @@ The following devices should work: .It Sunweit USB to DVI .It Unitek Y-2240 USB to DVI .It VideoHome NBdock1920 +.It i-tec USB 2.0 Docking Station (USBDVIDOCK) .El .Sh SEE ALSO .Xr usb 4 diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 07b3f73..7f75d5a 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1700,6 +1700,7 @@ product DISPLAYLINK UM7X0 0x401a nanovision MiMo product DISPLAYLINK LT1421 0x03e0 Lenovo ThinkVision LT1421 product DISPLAYLINK POLARIS2 0x0117 Polaris2 USB dock product DISPLAYLINK PLUGABLE 0x0377 Plugable docking station +product DISPLAYLINK ITEC 0x02e9 i-tec USB 2.0 Docking Station /* DMI products */ product DMI CFSM_RW 0xa109 CF/SM Reader/Writer diff --git a/sys/dev/usb/video/udl.c b/sys/dev/usb/video/udl.c index 0d7c504..1096ed3 100644 --- a/sys/dev/usb/video/udl.c +++ b/sys/dev/usb/video/udl.c @@ -177,7 +177,8 @@ static const STRUCT_USB_HOST_ID udl_devs[] = { {USB_VPI(USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_PLUGABLE, DL160)}, {USB_VPI(USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_LUM70, DL125)}, {USB_VPI(USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_POLARIS2, DLUNK)}, - {USB_VPI(USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_LT1421, DLUNK)} + {USB_VPI(USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_LT1421, DLUNK)}, + {USB_VPI(USB_VENDOR_DISPLAYLINK, USB_PRODUCT_DISPLAYLINK_ITEC, DL165)}, }; static void |