From: Ralf Baechle Date: Mon, 6 Nov 2006 13:32:39 +0000 (+0000) Subject: [MIPS] EV64120: Fix timer initialization for HZ != 100. X-Git-Tag: v2.6.19-rc5~5^2~3 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=325d08d1a44b601fbf70c259fb61c38d2af7d309;p=karo-tx-linux.git [MIPS] EV64120: Fix timer initialization for HZ != 100. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/gt64120/common/time.c b/arch/mips/gt64120/common/time.c index c83ae6acd601..e6e48323e758 100644 --- a/arch/mips/gt64120/common/time.c +++ b/arch/mips/gt64120/common/time.c @@ -71,7 +71,7 @@ void gt64120_time_init(void) /* Disable timer first */ GT_WRITE(GT_TC_CONTROL_OFS, 0); /* 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