diff options
Diffstat (limited to 'drivers/sh/clk')
| -rw-r--r-- | drivers/sh/clk/cpg.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/sh/clk/cpg.c b/drivers/sh/clk/cpg.c index 5aedcdf4ac5..1ebe67cd183 100644 --- a/drivers/sh/clk/cpg.c +++ b/drivers/sh/clk/cpg.c @@ -126,6 +126,12 @@ static int sh_clk_div_set_rate(struct clk *clk, unsigned long rate)  static int sh_clk_div_enable(struct clk *clk)  { +	if (clk->div_mask == SH_CLK_DIV6_MSK) { +		int ret = sh_clk_div_set_rate(clk, clk->rate); +		if (ret < 0) +			return ret; +	} +  	sh_clk_write(sh_clk_read(clk) & ~CPG_CKSTP_BIT, clk);  	return 0;  }  |