Skip to content

Commit a68491f

Browse files
toreandersondavem330
authored andcommitted
net: cdc_mbim: apply "NDP to end" quirk to HP lt4132
The HP lt4132 LTE/HSPA+ 4G Module (03f0:a31d) is a rebranded Huawei ME906s-158 device. It, like the ME906s-158, requires the "NDP to end" quirk for correct operation. Signed-off-by: Tore Anderson <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 75674c4 commit a68491f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/net/usb/cdc_mbim.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,13 @@ static const struct usb_device_id mbim_devs[] = {
643643
.driver_info = (unsigned long)&cdc_mbim_info_ndp_to_end,
644644
},
645645

646+
/* The HP lt4132 (03f0:a31d) is a rebranded Huawei ME906s-158,
647+
* therefore it too requires the above "NDP to end" quirk.
648+
*/
649+
{ USB_DEVICE_AND_INTERFACE_INFO(0x03f0, 0xa31d, USB_CLASS_COMM, USB_CDC_SUBCLASS_MBIM, USB_CDC_PROTO_NONE),
650+
.driver_info = (unsigned long)&cdc_mbim_info_ndp_to_end,
651+
},
652+
646653
/* Telit LE922A6 in MBIM composition */
647654
{ USB_DEVICE_AND_INTERFACE_INFO(0x1bc7, 0x1041, USB_CLASS_COMM, USB_CDC_SUBCLASS_MBIM, USB_CDC_PROTO_NONE),
648655
.driver_info = (unsigned long)&cdc_mbim_info_avoid_altsetting_toggle,

0 commit comments

Comments
 (0)