diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2014-01-08 14:57:30 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2014-01-08 14:59:53 +0900 |
commit | 8f0960e8378e0fc14d6216f60910994c217d3d57 (patch) | |
tree | f7a921e9158d23204523bec5af8f25183aedc94e /include/configs/rsk7264.h | |
parent | cdc902bd9cca9b5a14353f46435b8fa27c0db590 (diff) | |
download | u-boot-8f0960e8378e0fc14d6216f60910994c217d3d57.tar.gz |
sh: sh2: Change CONFIG_SYS_HZ to CONFIG_SH_CMT_CLK_FREQ
CONFIG_SYS_HZ of SH2 is not used as frequency of base timer. This is the
correct clock of CMT.
This changes from CONFIG_SYS_HZ to CONFIG_SH_CMT_CLK_FREQ, in order to use
CONFIG_SYS_HZ as clock of CMT.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Diffstat (limited to 'include/configs/rsk7264.h')
-rw-r--r-- | include/configs/rsk7264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/rsk7264.h b/include/configs/rsk7264.h index 5338cf23b6..4aaa3ef74b 100644 --- a/include/configs/rsk7264.h +++ b/include/configs/rsk7264.h @@ -65,7 +65,7 @@ #define CONFIG_SH_TMU_CLK_FREQ CONFIG_SYS_CLK_FREQ #define CONFIG_SH_SCIF_CLK_FREQ CONFIG_SYS_CLK_FREQ #define CMT_CLK_DIVIDER 32 /* 8 (default), 32, 128 or 512 */ -#define CONFIG_SYS_HZ (CONFIG_SYS_CLK_FREQ / CMT_CLK_DIVIDER) +#define CONFIG_SH_CMT_CLK_FREQ (CONFIG_SYS_CLK_FREQ / CMT_CLK_DIVIDER) /* Network interface */ #define CONFIG_SMC911X |