@@ -1547,7 +1547,7 @@ start_write:
15471547; Vendor match table
15481548; Each table consists of a set of paramters to check to confirm a device
15491549vendor_device_match_table:
1550- db 18 ; total number of devices in table (8-bits for now)
1550+ db 19 ; total number of devices in table (8-bits for now)
15511551 dl .device_id_ftdi_sio
15521552 dl .device_id_ftdi_ft232a
15531553 dl .device_id_ftdi_ft232b
@@ -1565,6 +1565,7 @@ vendor_device_match_table:
15651565 dl .device_id_ftdi_ft232hp
15661566 dl .device_id_ftdi_ft4232ha
15671567 dl .device_id_ch340
1568+ dl .device_id_ch341
15681569 dl .device_id_cp2102
15691570
15701571.device_id_ftdi_sio:
@@ -1653,6 +1654,11 @@ vendor_device_match_table:
16531654 devchk srl_device.idvendor , mtEquals , $ 1A86 ; paramter to check, match mode (equal, greater than, less than), value to check against
16541655 devchk srl_device.idproduct , mtEquals , $ 7523
16551656 db SRL_TYPE_CH34X , SRL_SUBTYPE_CH340 , BAUD_TYPE_CH34X ; device data if matched: type, sub type and baud type
1657+ .device_id_ch341:
1658+ db 2 ; number of conditional checks to perform
1659+ devchk srl_device.idvendor , mtEquals , $ 1A86 ; paramter to check, match mode (equal, greater than, less than), value to check against
1660+ devchk srl_device.idproduct , mtEquals , $ 5523
1661+ db SRL_TYPE_CH34X , SRL_SUBTYPE_CH341 , BAUD_TYPE_CH34X ; device data if matched: type, sub type and baud type
16561662.device_id_cp2102:
16571663 db 2
16581664 devchk srl_device.idvendor , mtEquals , $ 10C4
0 commit comments