mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add new USB ID to UDL driver.
Submitted by: Matthias Petermann <matthias@petermann-it.de> PR: 201084
This commit is contained in:
parent
d475bf2310
commit
4d36338081
3 changed files with 4 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue