From beccb3754c4faad50772abeed5f5b4baa962e382 Mon Sep 17 00:00:00 2001 From: stas Date: Sun, 16 Dec 2007 12:39:50 +0000 Subject: - Add quirk for the TrendNet TU-S9 adapter, which uses new version of PL2303 chip (revision 0x400). This allows it to be correctly identified as PL2303X. Approved by: maxim MFC after: 1 week --- sys/dev/usb/uplcom.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/usb/uplcom.c b/sys/dev/usb/uplcom.c index a27bd17..af39b68 100644 --- a/sys/dev/usb/uplcom.c +++ b/sys/dev/usb/uplcom.c @@ -240,6 +240,9 @@ static const struct uplcom_product { { USB_VENDOR_PROLIFIC2, USB_PRODUCT_PROLIFIC2_WSIM, -1, TYPE_PL2303X}, /* PLANEX USB-RS232 URS-03 */ { USB_VENDOR_ATEN, USB_PRODUCT_ATEN_UC232A, -1, TYPE_PL2303 }, + /* TrendNet TU-S9 */ + { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303, + 0x400, TYPE_PL2303X }, /* ST Lab USB-SERIAL-4 */ { USB_VENDOR_PROLIFIC, USB_PRODUCT_PROLIFIC_PL2303, 0x300, TYPE_PL2303X }, -- cgit v1.1