Skip to content

Commit

Permalink
Add support for the MaxSream USB test carrier.
Browse files Browse the repository at this point in the history
PR:		117546
Submitted by:	Daniel J. O'Connor <darius at midget dot dons dot net
dot au>
MFC after:	1 week
  • Loading branch information
remkolodder committed Dec 23, 2008
1 parent 12ca024 commit e39a1e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sys/dev/usb/uftdi.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ uftdi_match(device_t self)
uaa->product == USB_PRODUCT_FTDI_UOPTBR ||
uaa->product == USB_PRODUCT_FTDI_EMCU2D ||
uaa->product == USB_PRODUCT_FTDI_PCMSFU ||
uaa->product == USB_PRODUCT_FTDI_EMCU2H ))
uaa->product == USB_PRODUCT_FTDI_EMCU2H ||
uaa->product == USB_PRODUCT_FTDI_MAXSTREAM ))
return (UMATCH_VENDOR_PRODUCT);
if (uaa->vendor == USB_VENDOR_SIIG2 &&
(uaa->product == USB_PRODUCT_SIIG2_US2308))
Expand Down Expand Up @@ -256,6 +257,7 @@ uftdi_attach(device_t self)
case USB_PRODUCT_FTDI_EMCU2D:
case USB_PRODUCT_FTDI_PCMSFU:
case USB_PRODUCT_FTDI_EMCU2H:
case USB_PRODUCT_FTDI_MAXSTREAM:
sc->sc_type = UFTDI_TYPE_8U232AM;
sc->sc_hdrlen = 0;
break;
Expand Down
1 change: 1 addition & 0 deletions sys/dev/usb/usbdevs
Original file line number Diff line number Diff line change
Expand Up @@ -1280,6 +1280,7 @@ product FTDI UOPTBR 0xe889 USB-RS232 OptoBridge
product FTDI EMCU2D 0xe88a Expert mouseCLOCK USB II
product FTDI PCMSFU 0xe88b Precision Clock MSF USB
product FTDI EMCU2H 0xe88c Expert mouseCLOCK USB II HBG
product FTDI MAXSTREAM 0xee18 Maxstream PKG-U
product FTDI USBSERIAL 0xfa00 Matrix Orbital USB Serial
product FTDI MX2_3 0xfa01 Matrix Orbital MX2 or MX3
product FTDI MX4_5 0xfa02 Matrix Orbital MX4 or MX5
Expand Down

0 comments on commit e39a1e7

Please sign in to comment.