ARM: omap1: use machine specific hook for late init

Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
Shawn Guo
2012-04-26 13:49:29 +08:00
parent c633c531f8
commit 82c3bd0353
18 changed files with 37 additions and 3 deletions

View File

@@ -52,8 +52,18 @@ static inline void omap16xx_map_io(void)
}
#endif
#ifdef CONFIG_OMAP_SERIAL_WAKE
int omap_serial_wakeup_init(void);
#else
static inline int omap_serial_wakeup_init(void)
{
return 0;
}
#endif
void omap1_init_early(void);
void omap1_init_irq(void);
void omap1_init_late(void);
void omap1_restart(char, const char *);
extern struct sys_timer omap1_timer;