summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-prima2/prima2.c
diff options
context:
space:
mode:
authorShawn Guo2012-04-26 14:51:36 +0200
committerShawn Guo2012-05-08 14:36:22 +0200
commita4b4674e26da6b2c40f5b6485e165beb8f68d335 (patch)
tree7cd21196e22b24b3aa9c8b22e9e7fa6ad99faad4 /arch/arm/mach-prima2/prima2.c
parentARM: pnx4008: use machine specific hook for late init (diff)
downloadkernel-qcow2-linux-a4b4674e26da6b2c40f5b6485e165beb8f68d335.tar.gz
kernel-qcow2-linux-a4b4674e26da6b2c40f5b6485e165beb8f68d335.tar.xz
kernel-qcow2-linux-a4b4674e26da6b2c40f5b6485e165beb8f68d335.zip
ARM: prima2: use machine specific hook for late init
Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Reviewed-by: Barry Song <baohua.song@csr.com>
Diffstat (limited to 'arch/arm/mach-prima2/prima2.c')
-rw-r--r--arch/arm/mach-prima2/prima2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-prima2/prima2.c b/arch/arm/mach-prima2/prima2.c
index 02b9c05ff990..8f0429d4b79f 100644
--- a/arch/arm/mach-prima2/prima2.c
+++ b/arch/arm/mach-prima2/prima2.c
@@ -25,6 +25,11 @@ void __init sirfsoc_mach_init(void)
of_platform_bus_probe(NULL, sirfsoc_of_bus_ids, NULL);
}
+void __init sirfsoc_init_late(void)
+{
+ sirfsoc_pm_init();
+}
+
static const char *prima2cb_dt_match[] __initdata = {
"sirf,prima2-cb",
NULL
@@ -39,6 +44,7 @@ MACHINE_START(PRIMA2_EVB, "prima2cb")
.timer = &sirfsoc_timer,
.dma_zone_size = SZ_256M,
.init_machine = sirfsoc_mach_init,
+ .init_late = sirfsoc_init_late,
.dt_compat = prima2cb_dt_match,
.restart = sirfsoc_restart,
MACHINE_END