Skip to content

Commit

Permalink
clk: si5{14,351,70}: Remove CLK_IS_ROOT
Browse files Browse the repository at this point in the history
This flag is a no-op now. Remove usage of the flag.

Cc: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
Cc: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Sören Brinkmann <soren.brinkmann@xilinx.com>
Cc: Mike Looijmans <mike.looijmans@topic.nl>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
  • Loading branch information
Stephen Boyd committed Mar 3, 2016
1 parent 9059368 commit 803c433
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion drivers/clk/clk-si514.c
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ static int si514_probe(struct i2c_client *client,
return -ENOMEM;

init.ops = &si514_clk_ops;
init.flags = CLK_IS_ROOT;
init.flags = 0;
init.num_parents = 0;
data->hw.init = &init;
data->i2c_client = client;
Expand Down
2 changes: 1 addition & 1 deletion drivers/clk/clk-si5351.c
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,7 @@ static int si5351_i2c_probe(struct i2c_client *client,
if (drvdata->variant == SI5351_VARIANT_B) {
init.name = si5351_pll_names[2];
init.ops = &si5351_vxco_ops;
init.flags = CLK_IS_ROOT;
init.flags = 0;
init.parent_names = NULL;
init.num_parents = 0;
} else {
Expand Down
2 changes: 1 addition & 1 deletion drivers/clk/clk-si570.c
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ static int si570_probe(struct i2c_client *client,
return -ENOMEM;

init.ops = &si570_clk_ops;
init.flags = CLK_IS_ROOT;
init.flags = 0;
init.num_parents = 0;
data->hw.init = &init;
data->i2c_client = client;
Expand Down

0 comments on commit 803c433

Please sign in to comment.