Skip to content

Commit 0e01c34

Browse files
Frej Drejhammarjhovold
authored andcommitted
USB: serial: io_edgeport: add support for Blackbox IC135A
The Blackbox 724-746-5500 USB Director USB-RS-232 HUB, part number IC135A, is a rebadged Edgeport/4 with its own USB device id. Signed-off-by: Frej Drejhammar <frej@stacken.kth.se> Cc: stable@vger.kernel.org Signed-off-by: Johan Hovold <johan@kernel.org>
1 parent 01e8d0f commit 0e01c34

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

drivers/usb/serial/io_edgeport.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ static const struct usb_device_id edgeport_4port_id_table[] = {
7373
{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_EDGEPORT_22I) },
7474
{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_EDGEPORT_412_4) },
7575
{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_EDGEPORT_COMPATIBLE) },
76+
{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_BLACKBOX_IC135A) },
7677
{ }
7778
};
7879

@@ -121,6 +122,7 @@ static const struct usb_device_id id_table_combined[] = {
121122
{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_EDGEPORT_8R) },
122123
{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_EDGEPORT_8RR) },
123124
{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_EDGEPORT_412_8) },
125+
{ USB_DEVICE(USB_VENDOR_ID_ION, ION_DEVICE_ID_BLACKBOX_IC135A) },
124126
{ USB_DEVICE(USB_VENDOR_ID_NCR, NCR_DEVICE_ID_EPIC_0202) },
125127
{ USB_DEVICE(USB_VENDOR_ID_NCR, NCR_DEVICE_ID_EPIC_0203) },
126128
{ USB_DEVICE(USB_VENDOR_ID_NCR, NCR_DEVICE_ID_EPIC_0310) },
@@ -470,6 +472,7 @@ static void get_product_info(struct edgeport_serial *edge_serial)
470472
case ION_DEVICE_ID_EDGEPORT_2_DIN:
471473
case ION_DEVICE_ID_EDGEPORT_4_DIN:
472474
case ION_DEVICE_ID_EDGEPORT_16_DUAL_CPU:
475+
case ION_DEVICE_ID_BLACKBOX_IC135A:
473476
product_info->IsRS232 = 1;
474477
break;
475478

drivers/usb/serial/io_usbvend.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@
211211

212212
//
213213
// Definitions for other product IDs
214+
#define ION_DEVICE_ID_BLACKBOX_IC135A 0x0801 // OEM device (rebranded Edgeport/4)
214215
#define ION_DEVICE_ID_MT4X56USB 0x1403 // OEM device
215216
#define ION_DEVICE_ID_E5805A 0x1A01 // OEM device (rebranded Edgeport/4)
216217

0 commit comments

Comments
 (0)