Author: andrew
Date: Wed Jun 20 10:57:29 2018
New Revision: 335439
URL: https://svnweb.freebsd.org/changeset/base/335439

Log:
  Move the SMCCC SYSINIT later in the boot so the psci driver has attached.
  
  Sponsored by: DARPA, AFRL

Modified:
  head/sys/dev/psci/smccc.c

Modified: head/sys/dev/psci/smccc.c
==============================================================================
--- head/sys/dev/psci/smccc.c   Wed Jun 20 10:02:50 2018        (r335438)
+++ head/sys/dev/psci/smccc.c   Wed Jun 20 10:57:29 2018        (r335439)
@@ -67,7 +67,7 @@ smccc_init(void *dummy)
                    SMCCC_VERSION_MINOR(smccc_version));
        }
 }
-SYSINIT(smccc_start, SI_SUB_DRIVERS, SI_ORDER_ANY, smccc_init, NULL);
+SYSINIT(smccc_start, SI_SUB_CONFIGURE, SI_ORDER_ANY, smccc_init, NULL);
 
 int32_t
 smccc_arch_features(uint32_t smccc_func_id)
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to