Skip to content

Commit ec6de93

Browse files
SZ Lin (林上智)gregkh
authored andcommitted
USB: serial: option: adding support for ublox R410M
commit 4205cb0 upstream. This patch adds support for ublox R410M PID 0x90b2 USB modem to option driver, this module supports LTE Cat M1 / NB1. Interface layout: 0: QCDM/DIAG 1: ADB 2: AT 3: RMNET Signed-off-by: SZ Lin (林上智) <[email protected]> Cc: stable <[email protected]> Signed-off-by: Johan Hovold <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 3f0c247 commit ec6de93

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

drivers/usb/serial/option.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,8 @@ static void option_instat_callback(struct urb *urb);
236236
/* These Quectel products use Qualcomm's vendor ID */
237237
#define QUECTEL_PRODUCT_UC20 0x9003
238238
#define QUECTEL_PRODUCT_UC15 0x9090
239+
/* These u-blox products use Qualcomm's vendor ID */
240+
#define UBLOX_PRODUCT_R410M 0x90b2
239241
/* These Yuga products use Qualcomm's vendor ID */
240242
#define YUGA_PRODUCT_CLM920_NC5 0x9625
241243

@@ -1068,6 +1070,9 @@ static const struct usb_device_id option_ids[] = {
10681070
/* Yuga products use Qualcomm vendor ID */
10691071
{ USB_DEVICE(QUALCOMM_VENDOR_ID, YUGA_PRODUCT_CLM920_NC5),
10701072
.driver_info = RSVD(1) | RSVD(4) },
1073+
/* u-blox products using Qualcomm vendor ID */
1074+
{ USB_DEVICE(QUALCOMM_VENDOR_ID, UBLOX_PRODUCT_R410M),
1075+
.driver_info = RSVD(1) | RSVD(3) },
10711076
/* Quectel products using Quectel vendor ID */
10721077
{ USB_DEVICE(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC21),
10731078
.driver_info = RSVD(4) },

0 commit comments

Comments
 (0)