Skip to content

Commit 2ec106b

Browse files
davidetronkjhovold
authored andcommitted
USB: serial: option: remove old LARA-R6 PID
Remove the UBLOX_PRODUCT_R6XX 0x90fa association since LARA-R6 00B final product uses a new USB composition with different PID. 0x90fa PID used only by LARA-R6 internal prototypes. Move 0x90fa PID directly in the option_ids array since used by other Qualcomm based modem vendors as pointed out in: https://lore.kernel.org/all/[email protected] Signed-off-by: Davide Tronchin <[email protected]> Cc: [email protected] Signed-off-by: Johan Hovold <[email protected]>
1 parent 148f4b3 commit 2ec106b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/usb/serial/option.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ static void option_instat_callback(struct urb *urb);
240240
#define QUECTEL_PRODUCT_UC15 0x9090
241241
/* These u-blox products use Qualcomm's vendor ID */
242242
#define UBLOX_PRODUCT_R410M 0x90b2
243-
#define UBLOX_PRODUCT_R6XX 0x90fa
244243
/* These Yuga products use Qualcomm's vendor ID */
245244
#define YUGA_PRODUCT_CLM920_NC5 0x9625
246245

@@ -1127,7 +1126,7 @@ static const struct usb_device_id option_ids[] = {
11271126
/* u-blox products using Qualcomm vendor ID */
11281127
{ USB_DEVICE(QUALCOMM_VENDOR_ID, UBLOX_PRODUCT_R410M),
11291128
.driver_info = RSVD(1) | RSVD(3) },
1130-
{ USB_DEVICE(QUALCOMM_VENDOR_ID, UBLOX_PRODUCT_R6XX),
1129+
{ USB_DEVICE(QUALCOMM_VENDOR_ID, 0x90fa),
11311130
.driver_info = RSVD(3) },
11321131
/* Quectel products using Quectel vendor ID */
11331132
{ USB_DEVICE_AND_INTERFACE_INFO(QUECTEL_VENDOR_ID, QUECTEL_PRODUCT_EC21, 0xff, 0xff, 0xff),

0 commit comments

Comments
 (0)