Skip to content

Commit

Permalink
clk: ls1x: 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: Kelvin Cheung <keguang.zhang@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
  • Loading branch information
Stephen Boyd committed Apr 15, 2016
1 parent 26659ad commit 3be32b7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/clk/clk-ls1x.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,7 @@ void __init ls1x_clk_init(void)
{
struct clk *clk;

clk = clk_register_fixed_rate(NULL, "osc_33m_clk", NULL, CLK_IS_ROOT,
OSC);
clk = clk_register_fixed_rate(NULL, "osc_33m_clk", NULL, 0, OSC);
clk_register_clkdev(clk, "osc_33m_clk", NULL);

/* clock derived from 33 MHz OSC clk */
Expand Down

0 comments on commit 3be32b7

Please sign in to comment.