aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-exynos/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-exynos/common.h')
-rw-r--r--arch/arm/mach-exynos/common.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/common.h b/arch/arm/mach-exynos/common.h
index b32c6b5f4231..677b5467df18 100644
--- a/arch/arm/mach-exynos/common.h
+++ b/arch/arm/mach-exynos/common.h
@@ -16,7 +16,9 @@ extern struct sys_timer exynos4_timer;
16 16
17void exynos_init_io(struct map_desc *mach_desc, int size); 17void exynos_init_io(struct map_desc *mach_desc, int size);
18void exynos4_init_irq(void); 18void exynos4_init_irq(void);
19void exynos5_init_irq(void);
19void exynos4_restart(char mode, const char *cmd); 20void exynos4_restart(char mode, const char *cmd);
21void exynos5_restart(char mode, const char *cmd);
20 22
21#ifdef CONFIG_ARCH_EXYNOS4 23#ifdef CONFIG_ARCH_EXYNOS4
22void exynos4_register_clocks(void); 24void exynos4_register_clocks(void);
@@ -27,6 +29,15 @@ void exynos4_setup_clocks(void);
27#define exynos4_setup_clocks() 29#define exynos4_setup_clocks()
28#endif 30#endif
29 31
32#ifdef CONFIG_ARCH_EXYNOS5
33void exynos5_register_clocks(void);
34void exynos5_setup_clocks(void);
35
36#else
37#define exynos5_register_clocks()
38#define exynos5_setup_clocks()
39#endif
40
30#ifdef CONFIG_CPU_EXYNOS4210 41#ifdef CONFIG_CPU_EXYNOS4210
31void exynos4210_register_clocks(void); 42void exynos4210_register_clocks(void);
32 43