diff options
| author | wangyanqing <udknight@gmail.com> | 2011-03-11 06:24:38 -0800 |
|---|---|---|
| committer | Willy Tarreau <w@1wt.eu> | 2011-04-30 16:53:17 +0200 |
| commit | a665ef329436a92de7ac9db7f99795fe70acd32b (patch) | |
| tree | 30edadd6c3fc88fd77fae18dbfb01abd24666e2e /drivers | |
| parent | c9d58539fb70b5395b6ae6f09e5ade36f5bee207 (diff) | |
| download | linux-a665ef329436a92de7ac9db7f99795fe70acd32b.tar.gz linux-a665ef329436a92de7ac9db7f99795fe70acd32b.tar.bz2 linux-a665ef329436a92de7ac9db7f99795fe70acd32b.zip | |
USB: serial: ch341: add new id
commit d0781383038e983a63843a9a6a067ed781db89c1 upstream.
I picked up a new DAK-780EX(professional digitl reverb/mix system),
which use CH341T chipset to communication with computer on 3/2011
and the CH341T's vendor code is 1a86
Looking up the CH341T's vendor and product id's I see:
1a86 QinHeng Electronics
5523 CH341 in serial mode, usb to serial port converter
CH341T,CH341 are the products of the same company, maybe
have some common hardware, and I test the ch341.c works
well with CH341T
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/usb/serial/ch341.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/serial/ch341.c b/drivers/usb/serial/ch341.c index f61e3ca64305..7234b9372015 100644 --- a/drivers/usb/serial/ch341.c +++ b/drivers/usb/serial/ch341.c @@ -29,6 +29,7 @@ static int debug; static struct usb_device_id id_table [] = { { USB_DEVICE(0x4348, 0x5523) }, { USB_DEVICE(0x1a86, 0x7523) }, + { USB_DEVICE(0x1a86, 0x5523) }, { }, }; MODULE_DEVICE_TABLE(usb, id_table); |
