diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-12-12 04:35:05 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-12-12 04:35:05 +0000 |
commit | 730e58deb3032527ec178eba2f3f7f7a2fe13b19 (patch) | |
tree | f1f3bf60c6299a9354f5a43bd49835edcdbe9c53 /sys | |
parent | 4d5729889d327c8fa0f7b0d97183b90d883d46dc (diff) |
Match on the FTDI Suunto product id, from Kristaps Dzonsons who tested
this with a Suunto D6i dive computer.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/uftdi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/uftdi.c b/sys/dev/usb/uftdi.c index 98210cbc638..d6f4dab9c6c 100644 --- a/sys/dev/usb/uftdi.c +++ b/sys/dev/usb/uftdi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uftdi.c,v 1.74 2015/06/18 09:47:16 mpi Exp $ */ +/* $OpenBSD: uftdi.c,v 1.75 2016/12/12 04:35:04 jsg Exp $ */ /* $NetBSD: uftdi.c,v 1.14 2003/02/23 04:20:07 simonb Exp $ */ /* @@ -331,6 +331,7 @@ static const struct usb_devno uftdi_devs[] = { { USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_8U232AM }, { USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SERIAL_8U232AM4 }, { USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SPROG_II }, + { USB_VENDOR_FTDI, USB_PRODUCT_FTDI_SUUNTO }, { USB_VENDOR_FTDI, USB_PRODUCT_FTDI_TERATRONIK_D2XX }, { USB_VENDOR_FTDI, USB_PRODUCT_FTDI_TERATRONIK_VCP }, { USB_VENDOR_FTDI, USB_PRODUCT_FTDI_THORLABS }, |