Skip to content

Commit 482b0b5

Browse files
Konstantin Holoborodkogregkh
authored andcommitted
usb: ftdi_sio: Add support for Mitsubishi FX-USB-AW/-BD
It enhances the driver for FTDI-based USB serial adapters to recognize Mitsubishi Electric Corp. USB/RS422 Converters as FT232BM chips and support them. https://search.meau.com/?q=FX-USB-AW Signed-off-by: Konstantin Holoborodko <[email protected]> Tested-by: Konstantin Holoborodko <[email protected]> Cc: stable <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent c8fa48d commit 482b0b5

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

drivers/usb/serial/ftdi_sio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -640,6 +640,7 @@ static struct usb_device_id id_table_combined [] = {
640640
{ USB_DEVICE(FTDI_VID, FTDI_RM_CANVIEW_PID) },
641641
{ USB_DEVICE(ACTON_VID, ACTON_SPECTRAPRO_PID) },
642642
{ USB_DEVICE(CONTEC_VID, CONTEC_COM1USBH_PID) },
643+
{ USB_DEVICE(MITSUBISHI_VID, MITSUBISHI_FXUSB_PID) },
643644
{ USB_DEVICE(BANDB_VID, BANDB_USOTL4_PID) },
644645
{ USB_DEVICE(BANDB_VID, BANDB_USTL4_PID) },
645646
{ USB_DEVICE(BANDB_VID, BANDB_USO9ML2_PID) },

drivers/usb/serial/ftdi_sio_ids.h

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,13 @@
583583
#define CONTEC_VID 0x06CE /* Vendor ID */
584584
#define CONTEC_COM1USBH_PID 0x8311 /* COM-1(USB)H */
585585

586+
/*
587+
* Mitsubishi Electric Corp. (http://www.meau.com)
588+
* Submitted by Konstantin Holoborodko
589+
*/
590+
#define MITSUBISHI_VID 0x06D3
591+
#define MITSUBISHI_FXUSB_PID 0x0284 /* USB/RS422 converters: FX-USB-AW/-BD */
592+
586593
/*
587594
* Definitions for B&B Electronics products.
588595
*/

0 commit comments

Comments
 (0)