diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-01 22:00:22 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-03-03 04:50:58 +0300 |
commit | 905936823ec56c451357f4ca75ceff8092bea2f0 (patch) | |
tree | 6a20a073c1d0b6b7c1f0d8e286caae0d3d39cb00 /drivers/clk | |
parent | 86209252315ccede613914b55e9e2af8015da509 (diff) | |
download | linux-905936823ec56c451357f4ca75ceff8092bea2f0.tar.xz |
clk: scpi: Remove CLK_IS_ROOT
This flag is a no-op now. Remove usage of the flag.
Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/clk-scpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-scpi.c b/drivers/clk/clk-scpi.c index 89e9ca78bb94..6962ee5d1e9a 100644 --- a/drivers/clk/clk-scpi.c +++ b/drivers/clk/clk-scpi.c @@ -155,7 +155,7 @@ scpi_clk_ops_init(struct device *dev, const struct of_device_id *match, unsigned long min = 0, max = 0; init.name = name; - init.flags = CLK_IS_ROOT; + init.flags = 0; init.num_parents = 0; init.ops = match->data; sclk->hw.init = &init; |