diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-01 20:00:01 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-04-16 01:50:05 +0200 |
commit | 260c37f92a420958c25ab404e7f03a1cd3b04843 (patch) | |
tree | 6ca548b0c5c9519b7c4a2b32c2edbd042bb86b02 /drivers/clk/sunxi | |
parent | clk: sirf: Remove CLK_IS_ROOT (diff) | |
download | linux-260c37f92a420958c25ab404e7f03a1cd3b04843.tar.xz linux-260c37f92a420958c25ab404e7f03a1cd3b04843.zip |
clk: sunxi: Remove CLK_IS_ROOT
This flag is a no-op now. Remove usage of the flag.
Cc: Maxime Ripard <maxime.ripard@free-electrons.com>
Cc: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/sunxi')
-rw-r--r-- | drivers/clk/sunxi/clk-a10-hosc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/clk/sunxi/clk-a10-hosc.c b/drivers/clk/sunxi/clk-a10-hosc.c index 6b598c6a0213..dca532431394 100644 --- a/drivers/clk/sunxi/clk-a10-hosc.c +++ b/drivers/clk/sunxi/clk-a10-hosc.c @@ -54,8 +54,7 @@ static void __init sun4i_osc_clk_setup(struct device_node *node) NULL, 0, NULL, NULL, &fixed->hw, &clk_fixed_rate_ops, - &gate->hw, &clk_gate_ops, - CLK_IS_ROOT); + &gate->hw, &clk_gate_ops, 0); if (IS_ERR(clk)) goto err_free_gate; |