Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Oct 2018 10:44:34 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r339038 - head/sys/dev/iwm
Message-ID:  <201810011044.w91AiY4T013945@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810011044.w91AiY4T013945>