From 905ed41aad2f80b64b1163a55e18ee4e5278e708 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Mon, 28 Nov 2011 15:04:36 +0000 Subject: tegra: Move clock_early_init() to arch_cpu_init() The clock init is not board specific, so move it into the cpu code. Signed-off-by: Simon Glass Acked-by: Stephen Warren Signed-off-by: Tom Warren --- arch/arm/cpu/armv7/tegra2/board.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'arch') diff --git a/arch/arm/cpu/armv7/tegra2/board.c b/arch/arm/cpu/armv7/tegra2/board.c index d0a599edc5..803ddc15d9 100644 --- a/arch/arm/cpu/armv7/tegra2/board.c +++ b/arch/arm/cpu/armv7/tegra2/board.c @@ -84,6 +84,9 @@ int arch_cpu_init(void) /* We didn't do this init in start.S, so do it now */ cpu_init_cp15(); + /* Initialize essential common plls */ + clock_early_init(); + return 0; } #endif -- cgit v1.2.1