浏览代码

clk: at91: propagate rate change on system clks

System clks are just gates, and thus do not provide any rate operations.
Authorize clk rate change to be propagated to system clk parents.

Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Boris BREZILLON 11 年之前
父节点
当前提交
693bb3d99d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/clk/at91/clk-system.c

+ 1 - 1
drivers/clk/at91/clk-system.c

@@ -84,7 +84,7 @@ at91_clk_register_system(struct at91_pmc *pmc, const char *name,
 	 * (see drivers/memory) which would request and enable the ddrck clock.
 	 * (see drivers/memory) which would request and enable the ddrck clock.
 	 * When this is done we will be able to remove CLK_IGNORE_UNUSED flag.
 	 * When this is done we will be able to remove CLK_IGNORE_UNUSED flag.
 	 */
 	 */
-	init.flags = CLK_IGNORE_UNUSED;
+	init.flags = CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED;
 
 
 	sys->id = id;
 	sys->id = id;
 	sys->hw.init = &init;
 	sys->hw.init = &init;