aboutsummaryrefslogtreecommitdiffstats
path: root/arch/metag
diff options
context:
space:
mode:
authorJames Hogan <james.hogan@imgtec.com>2013-01-15 15:27:45 +0000
committerJames Hogan <james.hogan@imgtec.com>2013-06-13 12:55:27 +0100
commitcf07053214efccc80eed429dcd8f95583af75e7b (patch)
tree9215633f505fa40f1b3342be252a2d4a75db80af /arch/metag
parentmetag: init common clk and use "core" clk (diff)
downloadlinux-dev-cf07053214efccc80eed429dcd8f95583af75e7b.tar.xz
linux-dev-cf07053214efccc80eed429dcd8f95583af75e7b.zip
metag: log core and timer frequencies from arch code
Log core clock and Meta timer frequencies during init in architecture generic code, removing the need for equivalent log messages in SoC specific code. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: John Stultz <john.stultz@linaro.org> Cc: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/metag')
-rw-r--r--arch/metag/kernel/clock.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/metag/kernel/clock.c b/arch/metag/kernel/clock.c
index 8bfd6a5deac9..6339c9c6d0ab 100644
--- a/arch/metag/kernel/clock.c
+++ b/arch/metag/kernel/clock.c
@@ -87,6 +87,8 @@ static void __init init_metag_core_clock(void)
void __init init_metag_clocks(void)
{
init_metag_core_clock();
+
+ pr_info("Core clock frequency: %lu Hz\n", get_coreclock());
}
/**