forked from Minki/linux
a283580c52
Being a module_init call, highbank_pm_init will cause problem with multi-platform build running on other platforms. Call it from .init_machine instead. Reported-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Olof Johansson <olof@lixom.net>
18 lines
490 B
C
18 lines
490 B
C
extern void highbank_set_cpu_jump(int cpu, void *jump_addr);
|
|
extern void highbank_clocks_init(void);
|
|
extern void highbank_restart(char, const char *);
|
|
extern void __iomem *scu_base_addr;
|
|
#ifdef CONFIG_DEBUG_HIGHBANK_UART
|
|
extern void highbank_lluart_map_io(void);
|
|
#else
|
|
static inline void highbank_lluart_map_io(void) {}
|
|
#endif
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
extern void highbank_pm_init(void);
|
|
#else
|
|
static inline void highbank_pm_init(void) {}
|
|
#endif
|
|
|
|
extern void highbank_smc1(int fn, int arg);
|