svn commit: r335439 - head/sys/dev/psci

Andrew Turner andrew at FreeBSD.org
Wed Jun 20 10:57:30 UTC 2018


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)


More information about the svn-src-head mailing list