Attach the prcm clock driver early, so it can set the mpcore timer frequency.

Submitted by:	Svatopluk Kraus
This commit is contained in:
Ian Lepore 2015-03-09 15:54:14 +00:00
parent 5d44d58834
commit 726f3ad5aa

View File

@ -1423,5 +1423,6 @@ static driver_t omap4_prcm_driver = {
static devclass_t omap4_prcm_devclass;
DRIVER_MODULE(omap4_prcm, simplebus, omap4_prcm_driver, omap4_prcm_devclass, 0, 0);
EARLY_DRIVER_MODULE(omap4_prcm, simplebus, omap4_prcm_driver,
omap4_prcm_devclass, 0, 0, BUS_PASS_TIMER + BUS_PASS_ORDER_EARLY);
MODULE_VERSION(omap4_prcm, 1);