Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Mar 2018 18:40:46 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r330350 - head/sys/arm/allwinner
Message-ID:  <201803031840.w23IekoB077394@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Sat Mar  3 18:40:46 2018
New Revision: 330350
URL: https://svnweb.freebsd.org/changeset/base/330350

Log:
  aw_syscon(4): Move to BUS_PASS_SUPPORTDEV
  
  It would have been on an actual named pass before, but none were really
  appropriate in name. Move it to the recently created SUPPORTDEV pass, which
  perfectly describes it and keeps it in the right order.

Modified:
  head/sys/arm/allwinner/aw_syscon.c

Modified: head/sys/arm/allwinner/aw_syscon.c
==============================================================================
--- head/sys/arm/allwinner/aw_syscon.c	Sat Mar  3 18:36:38 2018	(r330349)
+++ head/sys/arm/allwinner/aw_syscon.c	Sat Mar  3 18:40:46 2018	(r330350)
@@ -80,5 +80,5 @@ DEFINE_CLASS_1(aw_syscon, aw_syscon_driver, aw_syscon_
 static devclass_t aw_syscon_devclass;
 /* aw_syscon needs to attach prior to if_awg */
 EARLY_DRIVER_MODULE(aw_syscon, simplebus, aw_syscon_driver, aw_syscon_devclass,
-    0, 0, BUS_PASS_DEFAULT - 1000);
+    0, 0, BUS_PASS_SUPPORTDEV + BUS_PASS_ORDER_MIDDLE);
 MODULE_VERSION(aw_syscon, 1);



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