Move the SMCCC SYSINIT later in the boot so the psci driver has attached.

Sponsored by:	DARPA, AFRL
This commit is contained in:
Andrew Turner 2018-06-20 10:57:29 +00:00
parent 95c4b3c735
commit 1d802c646c

View File

@ -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)