svn commit: r339026 - head/sys/dev/usb/net

Allan Jude allanjude at FreeBSD.org
Sun Sep 30 21:23:32 UTC 2018


Author: allanjude
Date: Sun Sep 30 21:23:31 2018
New Revision: 339026
URL: https://svnweb.freebsd.org/changeset/base/339026

Log:
  Use PNP metadata to allow devmatch to autoload ure(4)
  
  Reviewed by:	manu imp
  Approved by:	re (kib)
  X-MFC-with:	devmatch
  Sponsored by:	Klara Systems

Modified:
  head/sys/dev/usb/net/if_ure.c

Modified: head/sys/dev/usb/net/if_ure.c
==============================================================================
--- head/sys/dev/usb/net/if_ure.c	Sun Sep 30 16:57:30 2018	(r339025)
+++ head/sys/dev/usb/net/if_ure.c	Sun Sep 30 21:23:31 2018	(r339026)
@@ -169,6 +169,7 @@ MODULE_DEPEND(ure, usb, 1, 1, 1);
 MODULE_DEPEND(ure, ether, 1, 1, 1);
 MODULE_DEPEND(ure, miibus, 1, 1, 1);
 MODULE_VERSION(ure, 1);
+USB_PNP_HOST_INFO(ure_devs);
 
 static const struct usb_ether_methods ure_ue_methods = {
 	.ue_attach_post = ure_attach_post,


More information about the svn-src-head mailing list