diff options
author | Magnus Damm <damm@opensource.se> | 2011-07-10 04:38:34 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rjw@sisk.pl> | 2011-07-10 04:38:34 -0400 |
commit | 999a4d2a4da0527567e4b17d4da0782509358a83 (patch) | |
tree | 39acdada163f111d6f41457dce08d834a650bef6 /arch/arm/mach-shmobile/pm_runtime.c | |
parent | d24771dec9c62945a5d1c6a37e7a04f5c2a2ae6f (diff) |
ARM: mach-shmobile: Runtime PM late init callback
Add a mach-shmobile specific callback for SoC-specific code
to hook into. By having the late_initcall() in a common place
we can have multi-SoC/board support in the same kernel binary.
Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Diffstat (limited to 'arch/arm/mach-shmobile/pm_runtime.c')
-rw-r--r-- | arch/arm/mach-shmobile/pm_runtime.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-shmobile/pm_runtime.c b/arch/arm/mach-shmobile/pm_runtime.c index 2bcde1c46a6b..2f6ded5712ee 100644 --- a/arch/arm/mach-shmobile/pm_runtime.c +++ b/arch/arm/mach-shmobile/pm_runtime.c | |||
@@ -56,3 +56,13 @@ static int __init sh_pm_runtime_init(void) | |||
56 | return 0; | 56 | return 0; |
57 | } | 57 | } |
58 | core_initcall(sh_pm_runtime_init); | 58 | core_initcall(sh_pm_runtime_init); |
59 | |||
60 | void (*shmobile_runtime_pm_late_init)(void); | ||
61 | |||
62 | static int __init sh_pm_runtime_late_init(void) | ||
63 | { | ||
64 | if (shmobile_runtime_pm_late_init) | ||
65 | shmobile_runtime_pm_late_init(); | ||
66 | return 0; | ||
67 | } | ||
68 | late_initcall(sh_pm_runtime_late_init); | ||