Skip to content

Commit 264a58e

Browse files
committed
Merge tag 'usb-serial-6.18-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial into usb-next
Johan writes: USB serial updates for 6.18-rc1 Here are the USB serial updates for 6.18-rc1 consisting of some new modem device ids and a trivial cleanup. Everything has been in linux-next with no reported issues. * tag 'usb-serial-6.18-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial: USB: serial: option: add SIMCom 8230C compositions USB: serial: oti6858: remove extranenous ; after comment
2 parents ef351f8 + 0e0ba0e commit 264a58e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

drivers/usb/serial/option.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2114,6 +2114,12 @@ static const struct usb_device_id option_ids[] = {
21142114
{ USB_DEVICE_INTERFACE_CLASS(0x1e0e, 0x9003, 0xff) }, /* Simcom SIM7500/SIM7600 MBIM mode */
21152115
{ USB_DEVICE_INTERFACE_CLASS(0x1e0e, 0x9011, 0xff), /* Simcom SIM7500/SIM7600 RNDIS mode */
21162116
.driver_info = RSVD(7) },
2117+
{ USB_DEVICE(0x1e0e, 0x9071), /* Simcom SIM8230 RMNET mode */
2118+
.driver_info = RSVD(3) | RSVD(4) },
2119+
{ USB_DEVICE_INTERFACE_CLASS(0x1e0e, 0x9078, 0xff), /* Simcom SIM8230 ECM mode */
2120+
.driver_info = RSVD(5) },
2121+
{ USB_DEVICE_INTERFACE_CLASS(0x1e0e, 0x907b, 0xff), /* Simcom SIM8230 RNDIS mode */
2122+
.driver_info = RSVD(5) },
21172123
{ USB_DEVICE_INTERFACE_CLASS(0x1e0e, 0x9205, 0xff) }, /* Simcom SIM7070/SIM7080/SIM7090 AT+ECM mode */
21182124
{ USB_DEVICE_INTERFACE_CLASS(0x1e0e, 0x9206, 0xff) }, /* Simcom SIM7070/SIM7080/SIM7090 AT-only mode */
21192125
{ USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X060S_X200),

drivers/usb/serial/oti6858.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ struct oti6858_control_pkt {
106106
#define PIN_DTR 0x04 /* output pin */
107107
#define PIN_RI 0x02 /* input pin, active low */
108108
#define PIN_DCD 0x01 /* input pin, active low */
109-
u8 rx_bytes_avail; /* number of bytes in rx buffer */;
109+
u8 rx_bytes_avail; /* number of bytes in rx buffer */
110110
};
111111

112112
#define OTI6858_CTRL_PKT_SIZE sizeof(struct oti6858_control_pkt)

0 commit comments

Comments
 (0)