]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
sh: timer: Change definition of clock of TMU
authorNobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Tue, 20 Aug 2013 02:40:24 +0000 (11:40 +0900)
committerNobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Thu, 17 Oct 2013 00:43:25 +0000 (09:43 +0900)
The former SH/TMU driver had calculated timer based on CONFIG_SYS_CLK_FREQ.
The newest SH/TMU newly needs calculation of the clock for TMU.
This patch defines clock CONFIG_SH_TMU_CLK_FREQ for TMU and changes it to
CONFIG_SH_TMU_CLK_FREQ from CONFIG_SYS_CLK_FREQ.

Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
include/sh_tmu.h

index 96c589da5052aa70719ab042eb80cdabfe741987..f5b42faea418aff5857849810172f824f3fd677b 100644 (file)
@@ -69,7 +69,7 @@ struct tmu_regs {
 
 static inline unsigned long get_tmu0_clk_rate(void)
 {
-       return CONFIG_SYS_CLK_FREQ;
+       return CONFIG_SH_TMU_CLK_FREQ;
 }
 
 #endif /* __SH_TMU_H */