diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-10 11:31:44 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-04-19 23:00:38 +0200 |
commit | 25e56eba0ae783fc5b66d50c68826f276e8bd8c6 (patch) | |
tree | 0162391460341b29d50e47f74366d391222d89f6 /arch/arm/mach-exynos/common.c | |
parent | f4636d0ad7eee4741ef5146080e9ce57b9e2de0b (diff) | |
download | op-kernel-dev-25e56eba0ae783fc5b66d50c68826f276e8bd8c6.zip op-kernel-dev-25e56eba0ae783fc5b66d50c68826f276e8bd8c6.tar.gz |
clk: exynos: prepare for multiplatform
The new common clock drivers for exynos are using compile
time constants and soc_is_exynos* macros to provide backwards
compatibility for pre-DT systems, which is not possible with
multiplatform kernels. This moves all the necessary
information back into platform code and removes the mach/*
header inclusions.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'arch/arm/mach-exynos/common.c')
-rw-r--r-- | arch/arm/mach-exynos/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c index a3ab0ec..c3167b7 100644 --- a/arch/arm/mach-exynos/common.c +++ b/arch/arm/mach-exynos/common.c @@ -413,7 +413,7 @@ void __init exynos_init_time(void) } else { /* todo: remove after migrating legacy E4 platforms to dt */ #ifdef CONFIG_ARCH_EXYNOS4 - exynos4_clk_init(NULL); + exynos4_clk_init(NULL, !soc_is_exynos4210(), S5P_VA_CMU, readl(S5P_VA_CHIPID + 8) & 1); exynos4_clk_register_fixed_ext(xxti_f, xusbxti_f); #endif mct_init(); |