summaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-s5p/s5p-time.c
diff options
context:
space:
mode:
authorSangbeom Kim2011-06-23 14:43:58 +0200
committerKukjin Kim2011-07-06 01:43:02 +0200
commit27ea7fd2889eb93041480b18de655b1ff003e05d (patch)
tree2e9ed68ea86f1af38056c7687aeb98d5f3b73a79 /arch/arm/plat-s5p/s5p-time.c
parentARM: SAMSUNG: header file revised to prevent declaring duplicated (diff)
downloadkernel-qcow2-linux-27ea7fd2889eb93041480b18de655b1ff003e05d.tar.gz
kernel-qcow2-linux-27ea7fd2889eb93041480b18de655b1ff003e05d.tar.xz
kernel-qcow2-linux-27ea7fd2889eb93041480b18de655b1ff003e05d.zip
ARM: S5P: Fix bug on init of PWMTimers for HRTimer
This patch fixes following. <6>[ 0.000000] sched_clock: 32 bits at 33MHz, ... <6>[ 128.651309] Calibrating delay loop... There is a big jump. The reason is that PWM Timer which is for HRTimer was used before its initialization. So this patch changes its order and following is kernel boot log message after this. <6>[ 0.000000] sched_clock: 32 bits at 33MHz, ... <6>[ 0.000088] Calibrating delay loop... Signed-off-by: Sangbeom Kim <sbkim73@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-s5p/s5p-time.c')
-rw-r--r--arch/arm/plat-s5p/s5p-time.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/plat-s5p/s5p-time.c b/arch/arm/plat-s5p/s5p-time.c
index 899a8cc011ff..612934c48b0d 100644
--- a/arch/arm/plat-s5p/s5p-time.c
+++ b/arch/arm/plat-s5p/s5p-time.c
@@ -370,11 +370,11 @@ static void __init s5p_clocksource_init(void)
clock_rate = clk_get_rate(tin_source);
- init_sched_clock(&cd, s5p_update_sched_clock, 32, clock_rate);
-
s5p_time_setup(timer_source.source_id, TCNT_MAX);
s5p_time_start(timer_source.source_id, PERIODIC);
+ init_sched_clock(&cd, s5p_update_sched_clock, 32, clock_rate);
+
if (clocksource_register_hz(&time_clocksource, clock_rate))
panic("%s: can't register clocksource\n", time_clocksource.name);
}