svn commit: r333018 - stable/11/sys/dev/gpio

Ian Lepore ian at FreeBSD.org
Thu Apr 26 16:41:00 UTC 2018


Author: ian
Date: Thu Apr 26 16:40:59 2018
New Revision: 333018
URL: https://svnweb.freebsd.org/changeset/base/333018

Log:
  MFC r308767 by br:
  
  Make gpiobus early driver at BUS_PAS_BUS.
  
  The gpiobus driver is attached explicitly and generally should be
  at the same pass as its parent. Making it use BUS_PAS_BUS ensures
  that it attaches immediately after parent adds it (assuming the
  parent itself attached at BUS_PAS_BUS and above).
  
  Submitted by:	kan
  Sponsored by:	DARPA, AFRL

Modified:
  stable/11/sys/dev/gpio/gpiobus.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/gpio/gpiobus.c
==============================================================================
--- stable/11/sys/dev/gpio/gpiobus.c	Thu Apr 26 13:18:24 2018	(r333017)
+++ stable/11/sys/dev/gpio/gpiobus.c	Thu Apr 26 16:40:59 2018	(r333018)
@@ -855,5 +855,6 @@ driver_t gpiobus_driver = {
 
 devclass_t	gpiobus_devclass;
 
-DRIVER_MODULE(gpiobus, gpio, gpiobus_driver, gpiobus_devclass, 0, 0);
+EARLY_DRIVER_MODULE(gpiobus, gpio, gpiobus_driver, gpiobus_devclass, 0, 0,
+    BUS_PASS_BUS + BUS_PASS_ORDER_MIDDLE);
 MODULE_VERSION(gpiobus, 1);


More information about the svn-src-all mailing list