Commit 325d08d1 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] EV64120: Fix timer initialization for HZ != 100.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent ff28cbd2
...@@ -71,7 +71,7 @@ void gt64120_time_init(void) ...@@ -71,7 +71,7 @@ void gt64120_time_init(void)
/* Disable timer first */ /* Disable timer first */
GT_WRITE(GT_TC_CONTROL_OFS, 0); GT_WRITE(GT_TC_CONTROL_OFS, 0);
/* Load timer value for 100 Hz */ /* Load timer value for 100 Hz */
GT_WRITE(GT_TC3_OFS, Sys_clock / 100); GT_WRITE(GT_TC3_OFS, Sys_clock / HZ);
/* /*
* Create the IRQ structure entry for the timer. Since we're too early * Create the IRQ structure entry for the timer. Since we're too early
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment