]> Pileus Git - ~andy/linux/commitdiff
OMAP: pm.c correct the initcall for an early init.
authorThara Gopinath <thara@ti.com>
Mon, 20 Dec 2010 15:47:21 +0000 (21:17 +0530)
committerKevin Hilman <khilman@deeprootsystems.com>
Tue, 21 Dec 2010 22:29:34 +0000 (14:29 -0800)
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: Thara Gopinath <thara@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
arch/arm/mach-omap2/pm.c

index 59ca03b0e691c4dda171d68ffc30fce327352dbd..6ec2ee12272a31eb3774501e60ff78832b38111e 100644 (file)
@@ -143,5 +143,5 @@ static int __init omap2_common_pm_init(void)
 
        return 0;
 }
-device_initcall(omap2_common_pm_init);
+postcore_initcall(omap2_common_pm_init);