svn commit: r330351 - head/sys/arm/freescale/imx

Kyle Evans kevans at FreeBSD.org
Sat Mar 3 18:52:19 UTC 2018


Author: kevans
Date: Sat Mar  3 18:52:19 2018
New Revision: 330351
URL: https://svnweb.freebsd.org/changeset/base/330351

Log:
  Move imx6_usbphy to SUPPORTDEV, massage associated comment
  
  No objections from:	ian

Modified:
  head/sys/arm/freescale/imx/imx6_usbphy.c

Modified: head/sys/arm/freescale/imx/imx6_usbphy.c
==============================================================================
--- head/sys/arm/freescale/imx/imx6_usbphy.c	Sat Mar  3 18:40:46 2018	(r330350)
+++ head/sys/arm/freescale/imx/imx6_usbphy.c	Sat Mar  3 18:52:19 2018	(r330351)
@@ -202,9 +202,9 @@ static devclass_t usbphy_devclass;
 
 /*
  * This driver needs to start before the ehci driver, but later than the usual
- * "special" drivers like clocks and cpu.  Ehci starts at DEFAULT so
- * DEFAULT-1000 seems good.
+ * "special" drivers like clocks and cpu.  Ehci starts at DEFAULT so SUPPORTDEV
+ * is where this driver fits most.
  */
 EARLY_DRIVER_MODULE(usbphy, simplebus, usbphy_driver, usbphy_devclass, 0, 0,
-    BUS_PASS_DEFAULT - 1000);
+    BUS_PASS_SUPPORTDEV + BUS_PASS_ORDER_MIDDLE);
 


More information about the svn-src-head mailing list