Skip to content

Commit

Permalink
clk: si5351: Set initial clkout rate when defined in platform data.
Browse files Browse the repository at this point in the history
clock-frequency property from platform data was read but never used.
Apply defined rate when clock is registered.

Signed-off-by: Marek Belisko <[email protected]>
Acked-by: Sebastian Hesselbarth <[email protected]>
Signed-off-by: Mike Turquette <[email protected]>
[[email protected]: add missing changelog]
Cc: [email protected]

Signed-off-by: Mike Turquette <[email protected]>
  • Loading branch information
Marek Belisko authored and Mike Turquette committed May 29, 2013
1 parent 67e1e22 commit 6532cb7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions 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 6532cb7

Please sign in to comment.