diff mbox

ARM: EXYNOS: fix compilation error introduced due to common clock migration

Message ID 1364310240-3394-1-git-send-email-kgene.kim@samsung.com (mailing list archive)
State New, archived
Headers show

Commit Message

Kim Kukjin March 26, 2013, 3:04 p.m. UTC
From: Thomas Abraham <thomas.ab@samsung.com>

The functions exynos4_clk_init and exynos4_clk_register_fixed_ext are
applicable only on Exynos4 non-dt platforms. But when building Exynos5
platforms without including Exynos4 platforms, the following errors
show up.

arch/arm/mach-exynos/built-in.o: In function `exynos_init_time':
arch/arm/mach-exynos/common.c:446: undefined reference to `exynos4_clk_init'
arch/arm/mach-exynos/common.c:447: undefined reference to `exynos4_clk_register_fixed_ext'

Fix this compilation errors by marking these calls as Exynos4 specific.

Signed-off-by: Thomas Abraham <thomas.ab@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
---
 arch/arm/mach-exynos/common.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
diff mbox

Patch

diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c
index 9cd857e..a8570bf 100644
--- a/arch/arm/mach-exynos/common.c
+++ b/arch/arm/mach-exynos/common.c
@@ -443,8 +443,10 @@  void __init exynos_init_time(void)
 #endif
 	} else {
 		/* todo: remove after migrating legacy E4 platforms to dt */
+#ifdef CONFIG_ARCH_EXYNOS4
 		exynos4_clk_init(NULL);
 		exynos4_clk_register_fixed_ext(xxti_f, xusbxti_f);
+#endif
 		mct_init();
 	}
 }