dect
/
linux-2.6
Archived
13
0
Fork 0

Merge branch 'common/clkfwk' into sh-fixes-for-linus

This commit is contained in:
Paul Mundt 2010-11-19 16:43:23 +09:00
commit dfcd6e4389
2 changed files with 4 additions and 1 deletions

View File

@ -418,8 +418,11 @@ int clk_register(struct clk *clk)
list_add(&clk->sibling, &root_clks);
list_add(&clk->node, &clock_list);
#ifdef CONFIG_SH_CLK_CPG_LEGACY
if (clk->ops && clk->ops->init)
clk->ops->init(clk);
#endif
out_unlock:
mutex_unlock(&clock_list_sem);

View File

@ -131,7 +131,7 @@ static int sh_clk_div6_enable(struct clk *clk)
unsigned long value;
int ret;
ret = sh_clk_div6_set_rate(clk, clk->rate, 0);
ret = sh_clk_div6_set_rate(clk, clk->rate);
if (ret == 0) {
value = __raw_readl(clk->enable_reg);
value &= ~0x100; /* clear stop bit to enable clock */