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);
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to