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

Bjoern A. Zeeb bz at FreeBSD.org
Mon Oct 1 10:44:35 UTC 2018


Author: bz
Date: Mon Oct  1 10:44:33 2018
New Revision: 339038
URL: https://svnweb.freebsd.org/changeset/base/339038

Log:
  Fix the MODULE_PNP_INFO() for iwm(4) where I got the bus and module
  arguments wrong in r339020.
  
  PR:			231625
  Reported by:		Yuri Pankov (yuripv yuripv.net)
  Reviewed by:		cem, Yuri Pankov (yuripv yuripv.net)
  Approved by:		re (kib)
  Pointyhat to:		bz (a rather big one for this one)

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

Modified: head/sys/dev/iwm/if_iwm.c
==============================================================================
--- head/sys/dev/iwm/if_iwm.c	Mon Oct  1 09:40:41 2018	(r339037)
+++ head/sys/dev/iwm/if_iwm.c	Mon Oct  1 10:44:33 2018	(r339038)
@@ -6460,7 +6460,7 @@ 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,
+MODULE_PNP_INFO("U16:device;P:#;T:vendor=0x8086", pci, iwm_pci_driver,
     iwm_devices, nitems(iwm_devices));
 MODULE_DEPEND(iwm, firmware, 1, 1, 1);
 MODULE_DEPEND(iwm, pci, 1, 1, 1);


More information about the svn-src-all mailing list