Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 376508
b: refs/heads/master
c: 6532cb7
h: refs/heads/master
v: v3
  • Loading branch information
Marek Belisko authored and Mike Turquette committed May 29, 2013
1 parent f8c50b4 commit af1cf52
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 67e1e2268e598861dc771e3c976daf07db380638
refs/heads/master: 6532cb71fb31436b8d31818a056f45b8f95dfb31
10 changes: 10 additions & 0 deletions trunk/drivers/clk/clk-si5351.c
Original file line number Diff line number Diff line change
Expand Up @@ -1477,6 +1477,16 @@ static int si5351_i2c_probe(struct i2c_client *client,
return -EINVAL;
}
drvdata->onecell.clks[n] = clk;

/* set initial clkout rate */
if (pdata->clkout[n].rate != 0) {
int ret;
ret = clk_set_rate(clk, pdata->clkout[n].rate);
if (ret != 0) {
dev_err(&client->dev, "Cannot set rate : %d\n",
ret);
}
}
}

ret = of_clk_add_provider(client->dev.of_node, of_clk_src_onecell_get,
Expand Down

0 comments on commit af1cf52

Please sign in to comment.