sh: clkfwk: fixup clk_rate_table_build parameter in div6 clock
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Thu, 14 Apr 2011 08:13:53 +0000 (17:13 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Mon, 18 Apr 2011 09:33:31 +0000 (18:33 +0900)
div6 clock should not use arch_flags for clk_rate_table_build,
because SH_CLK_DIV6_EXT doesn't care .arch_flags.
clk->freq_table[] will be all CPUFREQ_ENTRY_INVALID without this patch.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: stable@kernel.org
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
drivers/sh/clk/cpg.c

index 6172335ae3234b11d2bd37e4b57dad3c9061278c..82dd6fb178386a31ef29ee4adc1dcd96ccf221c5 100644 (file)
@@ -105,7 +105,7 @@ static int sh_clk_div6_set_parent(struct clk *clk, struct clk *parent)
 
        /* Rebuild the frequency table */
        clk_rate_table_build(clk, clk->freq_table, table->nr_divisors,
-                            table, &clk->arch_flags);
+                            table, NULL);
 
        return 0;
 }
This page took 0.025313 seconds and 5 git commands to generate.