Skip to content

Commit

Permalink
ARM: prima2: use machine specific hook for late init
Browse files Browse the repository at this point in the history
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Reviewed-by: Barry Song <baohua.song@csr.com>
  • Loading branch information
Shawn Guo committed May 8, 2012
1 parent cafa619 commit a4b4674
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions arch/arm/mach-prima2/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,10 @@ static inline void sirfsoc_map_lluart(void) {}
extern void __init sirfsoc_map_lluart(void);
#endif

#ifdef CONFIG_SUSPEND
extern int sirfsoc_pm_init(void);
#else
static inline int sirfsoc_pm_init(void) { return 0; }
#endif

#endif
3 changes: 1 addition & 2 deletions arch/arm/mach-prima2/pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,11 @@ static const struct platform_suspend_ops sirfsoc_pm_ops = {
.valid = suspend_valid_only_mem,
};

static int __init sirfsoc_pm_init(void)
int __init sirfsoc_pm_init(void)
{
suspend_set_ops(&sirfsoc_pm_ops);
return 0;
}
late_initcall(sirfsoc_pm_init);

static const struct of_device_id pwrc_ids[] = {
{ .compatible = "sirf,prima2-pwrc" },
Expand Down
6 changes: 6 additions & 0 deletions arch/arm/mach-prima2/prima2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit a4b4674

Please sign in to comment.