提交 1cbbe37a 编写于 作者: T Thara Gopinath 提交者: Kevin Hilman

OMAP: pm.c correct the initcall for an early init.

omap2_common_pm_init is the API where generic system devices like
mpu, l3 etc get initialized. This has to happen really early on
during the boot and not at a later time. This is especially important
with the new opp changes as these devices need to be built before the
opp tables init happen. Today both are device initcalls and it works
just because of the order of compilation. Making this postcore_initcall
is ideal because the omap device layer init happens as a core_initcall
and typically rest of the driver/device inits are arch_initcall or
something lower.
Signed-off-by: NThara Gopinath <thara@ti.com>
Signed-off-by: NKevin Hilman <khilman@deeprootsystems.com>
上级 c166381d
...@@ -143,5 +143,5 @@ static int __init omap2_common_pm_init(void) ...@@ -143,5 +143,5 @@ static int __init omap2_common_pm_init(void)
return 0; return 0;
} }
device_initcall(omap2_common_pm_init); postcore_initcall(omap2_common_pm_init);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册