Message ID | 20190717091134.GA5179@lisa.dawes.za.net (mailing list archive) |
---|---|
State | Mainlined |
Commit | 552573e42aab5f75aff9bab855a9677979d9a7d5 |
Headers | show |
Series | [v6] USB: serial: option: add D-Link DWM-222 device ID | expand |
On Wed, Jul 17, 2019 at 11:11:34AM +0200, Rogan Dawes wrote: > Add device id for D-Link DWM-222 A2. > > MI_00 D-Link HS-USB Diagnostics > MI_01 D-Link HS-USB Modem > MI_02 D-Link HS-USB AT Port > MI_03 D-Link HS-USB NMEA > MI_04 D-Link HS-USB WWAN Adapter (qmi_wwan) > MI_05 USB Mass Storage Device > > Cc: stable@vger.kernel.org > Signed-Off-By: Rogan Dawes <rogan@dawes.za.net> Perfect, thanks for sticking with it. I'll queue this is up after the merge window closes. Johan
Thank you for all the hand holding ... On Wed, Jul 17, 2019 at 11:20 AM Johan Hovold <johan@kernel.org> wrote: > > On Wed, Jul 17, 2019 at 11:11:34AM +0200, Rogan Dawes wrote: > > Add device id for D-Link DWM-222 A2. > > > > MI_00 D-Link HS-USB Diagnostics > > MI_01 D-Link HS-USB Modem > > MI_02 D-Link HS-USB AT Port > > MI_03 D-Link HS-USB NMEA > > MI_04 D-Link HS-USB WWAN Adapter (qmi_wwan) > > MI_05 USB Mass Storage Device > > > > Cc: stable@vger.kernel.org > > Signed-Off-By: Rogan Dawes <rogan@dawes.za.net> > > Perfect, thanks for sticking with it. > > I'll queue this is up after the merge window closes. > > Johan
On Wed, Jul 17, 2019 at 11:11:34AM +0200, Rogan Dawes wrote: > Add device id for D-Link DWM-222 A2. > > MI_00 D-Link HS-USB Diagnostics > MI_01 D-Link HS-USB Modem > MI_02 D-Link HS-USB AT Port > MI_03 D-Link HS-USB NMEA > MI_04 D-Link HS-USB WWAN Adapter (qmi_wwan) > MI_05 USB Mass Storage Device > > Cc: stable@vger.kernel.org > Signed-Off-By: Rogan Dawes <rogan@dawes.za.net> Now applied, thanks. Johan
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index a0aaf0635359..267111b1f431 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -1951,6 +1951,8 @@ static const struct usb_device_id option_ids[] = { .driver_info = RSVD(4) }, { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e35, 0xff), /* D-Link DWM-222 */ .driver_info = RSVD(4) }, + { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7e3d, 0xff), /* D-Link DWM-222 A2 */ + .driver_info = RSVD(4) }, { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e01, 0xff, 0xff, 0xff) }, /* D-Link DWM-152/C1 */ { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x3e02, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/C1 */ { USB_DEVICE_AND_INTERFACE_INFO(0x07d1, 0x7e11, 0xff, 0xff, 0xff) }, /* D-Link DWM-156/A3 */
Add device id for D-Link DWM-222 A2. MI_00 D-Link HS-USB Diagnostics MI_01 D-Link HS-USB Modem MI_02 D-Link HS-USB AT Port MI_03 D-Link HS-USB NMEA MI_04 D-Link HS-USB WWAN Adapter (qmi_wwan) MI_05 USB Mass Storage Device Cc: stable@vger.kernel.org Signed-Off-By: Rogan Dawes <rogan@dawes.za.net> --- drivers/usb/serial/option.c | 2 ++ 1 file changed, 2 insertions(+)