Attach the imx6 CCM driver during BUS_PASS_CPU. It controls the clocks

for most on-chip devices and needs to be available before other drivers
start attaching and asking to have their clocks enabled.
This commit is contained in:
Ian Lepore 2014-10-20 23:34:47 +00:00
parent c90fadc0d2
commit 52d99877ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=273353

View File

@ -261,5 +261,6 @@ static driver_t ccm_driver = {
static devclass_t ccm_devclass;
DRIVER_MODULE(ccm, simplebus, ccm_driver, ccm_devclass, 0, 0);
EARLY_DRIVER_MODULE(ccm, simplebus, ccm_driver, ccm_devclass, 0, 0,
BUS_PASS_CPU + BUS_PASS_ORDER_EARLY);