svn commit: r339020 - head/sys/dev/iwm

Bjoern A. Zeeb bz at FreeBSD.org
Sat Sep 29 21:14:55 UTC 2018


Author: bz
Date: Sat Sep 29 21:14:54 2018
New Revision: 339020
URL: https://svnweb.freebsd.org/changeset/base/339020

Log:
  Provide MODULE_PNP_INFO() for iwm(4) so that devmatch(8) can
  do its job.
  
  PR:		231625
  Submitted by:	Yuri Pankov (yuripv yuripv.net)
  Approved by:	re (kib)

Modified:
  head/sys/dev/iwm/if_iwm.c

Modified: head/sys/dev/iwm/if_iwm.c
==============================================================================
--- head/sys/dev/iwm/if_iwm.c	Sat Sep 29 20:01:23 2018	(r339019)
+++ head/sys/dev/iwm/if_iwm.c	Sat Sep 29 21:14:54 2018	(r339020)
@@ -6460,6 +6460,8 @@ static driver_t iwm_pci_driver = {
 static devclass_t iwm_devclass;
 
 DRIVER_MODULE(iwm, pci, iwm_pci_driver, iwm_devclass, NULL, NULL);
+MODULE_PNP_INFO("U16:device;P:#;T:vendor=0x8086", iwm_pci_driver, iwm,
+    iwm_devices, nitems(iwm_devices));
 MODULE_DEPEND(iwm, firmware, 1, 1, 1);
 MODULE_DEPEND(iwm, pci, 1, 1, 1);
 MODULE_DEPEND(iwm, wlan, 1, 1, 1);


More information about the svn-src-head mailing list