svn commit: r336109 - head/sys/dev/ipw

Warner Losh imp at FreeBSD.org
Sun Jul 8 20:40:28 UTC 2018


Author: imp
Date: Sun Jul  8 20:40:23 2018
New Revision: 336109
URL: https://svnweb.freebsd.org/changeset/base/336109

Log:
  Add PNP info to PCI attachment of ipw driver
  
  Reviewed by: imp, chuck
  Submitted by: Lakhan Shiva Kamireddy <lakhanshiva at gmail.com>
  Sponsored by: Google, Inc. (GSoC 2018)
  Differential Revision: https://reviews.freebsd.org/D15979

Modified:
  head/sys/dev/ipw/if_ipw.c

Modified: head/sys/dev/ipw/if_ipw.c
==============================================================================
--- head/sys/dev/ipw/if_ipw.c	Sun Jul  8 20:40:19 2018	(r336108)
+++ head/sys/dev/ipw/if_ipw.c	Sun Jul  8 20:40:23 2018	(r336109)
@@ -202,6 +202,8 @@ static driver_t ipw_driver = {
 static devclass_t ipw_devclass;
 
 DRIVER_MODULE(ipw, pci, ipw_driver, ipw_devclass, NULL, NULL);
+MODULE_PNP_INFO("U16:vendor;U16:device;D:#", pci, ipw, ipw_ident_table,
+    sizeof(ipw_ident_table[0]), nitems(ipw_ident_table) - 1);
 
 MODULE_VERSION(ipw, 1);
 


More information about the svn-src-head mailing list