svn commit: r351017 - stable/10/sys/dev/usb/net

Hans Petter Selasky hselasky at FreeBSD.org
Wed Aug 14 09:42:27 UTC 2019


Author: hselasky
Date: Wed Aug 14 09:42:26 2019
New Revision: 351017
URL: https://svnweb.freebsd.org/changeset/base/351017

Log:
  MFC r350396:
  Add support for tethering with Nokia 7 plus and the alike.
  
  PR:		239495
  Sponsored by:	Mellanox Technologies

Modified:
  stable/10/sys/dev/usb/net/if_urndis.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/usb/net/if_urndis.c
==============================================================================
--- stable/10/sys/dev/usb/net/if_urndis.c	Wed Aug 14 09:42:16 2019	(r351016)
+++ stable/10/sys/dev/usb/net/if_urndis.c	Wed Aug 14 09:42:26 2019	(r351017)
@@ -190,6 +190,9 @@ static const STRUCT_USB_HOST_ID urndis_host_devs[] = {
 	{USB_VENDOR(USB_VENDOR_PALM), USB_IFACE_CLASS(UICLASS_CDC),
 		USB_IFACE_SUBCLASS(UISUBCLASS_ABSTRACT_CONTROL_MODEL),
 		USB_IFACE_PROTOCOL(0xff)},
+	/* Nokia 7 plus */
+	{USB_IFACE_CLASS(UICLASS_IAD), USB_IFACE_SUBCLASS(0x4),
+		USB_IFACE_PROTOCOL(UIPROTO_ACTIVESYNC)},
 };
 
 static int


More information about the svn-src-all mailing list