svn commit: r306125 - stable/10/sys/pci

Andriy Gapon avg at FreeBSD.org
Wed Sep 21 16:29:16 UTC 2016


Author: avg
Date: Wed Sep 21 16:29:15 2016
New Revision: 306125
URL: https://svnweb.freebsd.org/changeset/base/306125

Log:
  MFC r305606: intpm: make sure to register smbus driver before intpm driver

Modified:
  stable/10/sys/pci/intpm.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/pci/intpm.c
==============================================================================
--- stable/10/sys/pci/intpm.c	Wed Sep 21 16:29:04 2016	(r306124)
+++ stable/10/sys/pci/intpm.c	Wed Sep 21 16:29:15 2016	(r306125)
@@ -922,7 +922,8 @@ static driver_t intsmb_driver = {
 	sizeof(struct intsmb_softc),
 };
 
-DRIVER_MODULE(intsmb, pci, intsmb_driver, intsmb_devclass, 0, 0);
+DRIVER_MODULE_ORDERED(intsmb, pci, intsmb_driver, intsmb_devclass, 0, 0,
+    SI_ORDER_ANY);
 DRIVER_MODULE(smbus, intsmb, smbus_driver, smbus_devclass, 0, 0);
 MODULE_DEPEND(intsmb, smbus, SMBUS_MINVER, SMBUS_PREFVER, SMBUS_MAXVER);
 MODULE_VERSION(intsmb, 1);


More information about the svn-src-all mailing list