|
@@ -1225,6 +1225,26 @@ static const struct usb_device_id cdc_devs[] = {
|
|
|
.driver_info = (unsigned long) &wwan_info,
|
|
|
},
|
|
|
|
|
|
+ /* Dell branded MBM devices like DW5550 */
|
|
|
+ { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
|
|
|
+ | USB_DEVICE_ID_MATCH_VENDOR,
|
|
|
+ .idVendor = 0x413c,
|
|
|
+ .bInterfaceClass = USB_CLASS_COMM,
|
|
|
+ .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
|
|
|
+ .bInterfaceProtocol = USB_CDC_PROTO_NONE,
|
|
|
+ .driver_info = (unsigned long) &wwan_info,
|
|
|
+ },
|
|
|
+
|
|
|
+ /* Toshiba branded MBM devices */
|
|
|
+ { .match_flags = USB_DEVICE_ID_MATCH_INT_INFO
|
|
|
+ | USB_DEVICE_ID_MATCH_VENDOR,
|
|
|
+ .idVendor = 0x0930,
|
|
|
+ .bInterfaceClass = USB_CLASS_COMM,
|
|
|
+ .bInterfaceSubClass = USB_CDC_SUBCLASS_NCM,
|
|
|
+ .bInterfaceProtocol = USB_CDC_PROTO_NONE,
|
|
|
+ .driver_info = (unsigned long) &wwan_info,
|
|
|
+ },
|
|
|
+
|
|
|
/* Generic CDC-NCM devices */
|
|
|
{ USB_INTERFACE_INFO(USB_CLASS_COMM,
|
|
|
USB_CDC_SUBCLASS_NCM, USB_CDC_PROTO_NONE),
|