aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-shmobile/include
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2012-04-26 09:58:41 -0400
committerShawn Guo <shawn.guo@linaro.org>2012-05-08 08:36:35 -0400
commit21cc1b7ede3cf456cf1d51f8a906093261f7c111 (patch)
treea0e6b7cb4408bba43676db16c910edabe65ea7ce /arch/arm/mach-shmobile/include
parent7fea1ba58e61c17fb59dfc50c408945f307addc6 (diff)
ARM: shmobile: use machine specific hook for late init
Cc: Paul Mundt <lethal@linux-sh.org> Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Magnus Damm <damm@opensource.se> Acked-by: "Rafael J. Wysocki" <rjw@sisk.pl>
Diffstat (limited to 'arch/arm/mach-shmobile/include')
-rw-r--r--arch/arm/mach-shmobile/include/mach/common.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/include/mach/common.h b/arch/arm/mach-shmobile/include/mach/common.h
index 83ad3fe0a75f..2a527c4de36c 100644
--- a/arch/arm/mach-shmobile/include/mach/common.h
+++ b/arch/arm/mach-shmobile/include/mach/common.h
@@ -83,4 +83,18 @@ extern void r8a7779_secondary_init(unsigned int cpu);
83extern int r8a7779_boot_secondary(unsigned int cpu); 83extern int r8a7779_boot_secondary(unsigned int cpu);
84extern void r8a7779_smp_prepare_cpus(void); 84extern void r8a7779_smp_prepare_cpus(void);
85 85
86extern void shmobile_init_late(void);
87
88#ifdef CONFIG_SUSPEND
89int shmobile_suspend_init(void);
90#else
91static inline int shmobile_suspend_init(void) { return 0; }
92#endif
93
94#ifdef CONFIG_CPU_IDLE
95int shmobile_cpuidle_init(void);
96#else
97static inline int shmobile_cpuidle_init(void) { return 0; }
98#endif
99
86#endif /* __ARCH_MACH_COMMON_H */ 100#endif /* __ARCH_MACH_COMMON_H */