Skip to content

Commit

Permalink
clk: mb86s7x: 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.

Acked-by: Jassi Brar <jaswinder.singh@linaro.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
  • Loading branch information
Stephen Boyd committed Mar 3, 2016
1 parent 4106684 commit 0d9967f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/clk/clk-mb86s7x.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ static struct clk *crg11_get(struct of_phandle_args *clkspec, void *data)
init.name = clkp;
init.num_parents = 0;
init.ops = &crg_port_ops;
init.flags = CLK_IS_ROOT;
init.flags = 0;
crgclk->hw.init = &init;
crgclk->cntrlr = cntrlr;
crgclk->domain = domain;
Expand Down Expand Up @@ -341,7 +341,7 @@ struct clk *mb86s7x_clclk_register(struct device *cpu_dev)

init.name = dev_name(cpu_dev);
init.ops = &clk_clc_ops;
init.flags = CLK_IS_ROOT | CLK_GET_RATE_NOCACHE;
init.flags = CLK_GET_RATE_NOCACHE;
init.num_parents = 0;

return devm_clk_register(cpu_dev, &clc->hw);
Expand Down

0 comments on commit 0d9967f

Please sign in to comment.