diff options
author | 2016-12-12 04:35:04 +0000 | |
---|---|---|
committer | 2016-12-12 04:35:04 +0000 | |
commit | c66f550665851e29df15e631710405ba81563f09 (patch) | |
tree | 9cc2cceebbdae84a58ff8a9ff131c1b6f42e56c6 | |
parent | Add support for Option iCON 505 from Piotr Isajew and consistently (diff) | |
download | wireguard-openbsd-c66f550665851e29df15e631710405ba81563f09.tar.xz wireguard-openbsd-c66f550665851e29df15e631710405ba81563f09.zip |
Match on the FTDI Suunto product id, from Kristaps Dzonsons who tested
this with a Suunto D6i dive computer.
-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 }, |