diff options
author | Kuninori Morimoto <morimoto.kuninori@renesas.com> | 2009-08-18 02:51:47 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-08-18 08:16:29 -0400 |
commit | b2ea8b421515ddd692c88fc5afb0e7f93e96e6cb (patch) | |
tree | b2da1ddfe9d7fc6481ff7f62fafe6111f39a2cdc /arch | |
parent | 7a01be28bac860086dbf659665d70928ae11c192 (diff) |
sh: clkfwk: Support additional IFC divisor on SH7724.
This patch updates the FRQCRA.IFC divisor values for SH7724. Despite
not being initially documented, the / 3 mode is also support for the IFC
division.
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/sh/kernel/cpu/sh4a/clock-sh7724.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7724.c b/arch/sh/kernel/cpu/sh4a/clock-sh7724.c index 34611d97378..627588dfddf 100644 --- a/arch/sh/kernel/cpu/sh4a/clock-sh7724.c +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7724.c | |||
@@ -127,7 +127,7 @@ struct clk *main_clks[] = { | |||
127 | &div3_clk, | 127 | &div3_clk, |
128 | }; | 128 | }; |
129 | 129 | ||
130 | static int divisors[] = { 2, 0, 4, 6, 8, 12, 16, 0, 24, 32, 36, 48, 0, 72 }; | 130 | static int divisors[] = { 2, 3, 4, 6, 8, 12, 16, 0, 24, 32, 36, 48, 0, 72 }; |
131 | 131 | ||
132 | static struct clk_div_mult_table div4_table = { | 132 | static struct clk_div_mult_table div4_table = { |
133 | .divisors = divisors, | 133 | .divisors = divisors, |